rust/tests/ui/impl-trait/precise-capturing/ordering.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
1005 B
Plaintext
Raw Normal View History

2024-04-04 14:06:30 -05:00
error: cannot capture parameter `'a` twice
--> $DIR/ordering.rs:1:33
2024-04-04 14:06:30 -05:00
|
2024-06-05 15:18:52 -05:00
LL | fn lt<'a>() -> impl Sized + use<'a, 'a> {}
| ^^ -- parameter captured again here
2024-04-04 14:06:30 -05:00
error: cannot capture parameter `T` twice
--> $DIR/ordering.rs:4:32
2024-04-04 14:06:30 -05:00
|
2024-06-05 15:18:52 -05:00
LL | fn ty<T>() -> impl Sized + use<T, T> {}
| ^ - parameter captured again here
2024-04-04 14:06:30 -05:00
error: cannot capture parameter `N` twice
--> $DIR/ordering.rs:7:45
2024-04-04 14:06:30 -05:00
|
2024-06-05 15:18:52 -05:00
LL | fn ct<const N: usize>() -> impl Sized + use<N, N> {}
| ^ - parameter captured again here
2024-04-04 14:06:30 -05:00
error: lifetime parameter `'a` must be listed before non-lifetime parameters
--> $DIR/ordering.rs:10:45
2024-04-04 14:06:30 -05:00
|
2024-06-05 15:18:52 -05:00
LL | fn ordering<'a, T>() -> impl Sized + use<T, 'a> {}
| - ^^
| |
| move the lifetime before this parameter
2024-04-04 14:06:30 -05:00
error: aborting due to 4 previous errors
2024-04-04 14:06:30 -05:00