Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
progval committed Aug 13, 2023
1 parent 14b7264 commit 2c7e2eb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@ struct Position {
fn test_str_fragments<'a, F, T>(parser: F, input: T, positions: Vec<Position>)

Check warning on line 59 in tests/integration_tests.rs

View workflow job for this annotation

GitHub Actions / Test (beta, --no-default-features)

function `test_str_fragments` is never used

Check warning on line 59 in tests/integration_tests.rs

View workflow job for this annotation

GitHub Actions / Test (stable, --no-default-features)

function `test_str_fragments` is never used

Check warning on line 59 in tests/integration_tests.rs

View workflow job for this annotation

GitHub Actions / Test (nightly, --no-default-features)

function `test_str_fragments` is never used
where
F: Fn(LocatedSpan<T>) -> IResult<LocatedSpan<T>, Vec<LocatedSpan<T>>>,
T: InputLength + Slice<Range<usize>> + Slice<RangeFull> + Debug + PartialEq + AsBytes + RewindableFragment,
T: InputLength
+ Slice<Range<usize>>
+ Slice<RangeFull>
+ Debug
+ PartialEq
+ AsBytes
+ RewindableFragment,
{
let res = parser(LocatedSpan::new(input.slice(..)))
.map_err(|err| {
Expand Down

0 comments on commit 2c7e2eb

Please sign in to comment.