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