]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-59508-1.stderr
Merge commit 'cd4810de42c57b64b74dae09c530a4c3a41f87b9' into libgccjit-codegen
[rust.git] / src / test / ui / issues / issue-59508-1.stderr
1 error: lifetime parameters must be declared prior to type parameters
2   --> $DIR/issue-59508-1.rs:12:25
3    |
4 LL |     pub fn do_things<T, 'a, 'b: 'a>() {
5    |                     ----^^--^^----- help: reorder the parameters: lifetimes, then consts and types: `<'a, 'b: 'a, T>`
6
7 warning: the feature `const_generics` is incomplete and may not be safe to use and/or cause compiler crashes
8   --> $DIR/issue-59508-1.rs:2:12
9    |
10 LL | #![feature(const_generics)]
11    |            ^^^^^^^^^^^^^^
12    |
13    = note: `#[warn(incomplete_features)]` on by default
14    = note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
15
16 error: aborting due to previous error; 1 warning emitted
17