]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-14303-impl.stderr
Allow a dirty MirBuilt for make_extern and make_method_extern
[rust.git] / src / test / ui / parser / issue-14303-impl.stderr
1 error: lifetime parameters must be declared prior to type parameters
2   --> $DIR/issue-14303-impl.rs:3:13
3    |
4 LL | impl<'a, T, 'b> X<T> {}
5    |             ^^
6 help: move the lifetime parameter prior to the first type parameter
7    |
8 LL | impl<'a, 'b, T> X<T> {}
9    |          ^^^ --
10
11 error: aborting due to previous error
12