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