blob: c1ad2332b5bfa8b21b3e0d614079906c225c650b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0747]: type provided when a lifetime was expected
--> $DIR/issue-14303-path.rs:10:37
|
LL | fn bar<'a, 'b, 'c, T>(x: foo::X<'a, T, 'b, 'c>) {}
| ^
|
= note: lifetime arguments must be provided before type arguments
error: aborting due to previous error
For more information about this error, try `rustc --explain E0747`.
|