]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0771.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0771.stderr
1 error[E0771]: use of non-static lifetime `'a` in const generic
2 --> $DIR/E0771.rs:4:41
3 |
4 LL | fn function_with_str<'a, const STRING: &'a str>() {}
5 | ^^
6 |
7 = note: for more information, see issue #74052 <https://github.com/rust-lang/rust/issues/74052>
8
9 warning: the feature `adt_const_params` is incomplete and may not be safe to use and/or cause compiler crashes
10 --> $DIR/E0771.rs:1:12
11 |
12 LL | #![feature(adt_const_params)]
13 | ^^^^^^^^^^^^^^^^
14 |
15 = note: `#[warn(incomplete_features)]` on by default
16 = note: see issue #95174 <https://github.com/rust-lang/rust/issues/95174> for more information
17
18 error: aborting due to previous error; 1 warning emitted
19
20 For more information about this error, try `rustc --explain E0771`.