]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const_let_refutable.stderr
Add FAQ for NLL migration
[rust.git] / src / test / ui / consts / const_let_refutable.stderr
1 error[E0005]: refutable pattern in function argument: `&[]` not covered
2   --> $DIR/const_let_refutable.rs:3:16
3    |
4 LL | const fn slice([a, b]: &[i32]) -> i32 {
5    |                ^^^^^^ pattern `&[]` not covered
6
7 error[E0723]: can only call other `const fn` within a `const fn`, but `const std::ops::Add::add` is not stable as `const fn`
8   --> $DIR/const_let_refutable.rs:4:5
9    |
10 LL |     a + b
11    |     ^^^^^
12    |
13    = note: for more information, see issue https://github.com/rust-lang/rust/issues/57563
14    = help: add #![feature(const_fn)] to the crate attributes to enable
15
16 warning[E0381]: use of possibly uninitialized variable: `a`
17   --> $DIR/const_let_refutable.rs:4:5
18    |
19 LL |     a + b
20    |     ^ use of possibly uninitialized `a`
21    |
22    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
23    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
24    = note: for more information, try `rustc --explain E0729`
25
26 warning[E0381]: use of possibly uninitialized variable: `b`
27   --> $DIR/const_let_refutable.rs:4:9
28    |
29 LL |     a + b
30    |         ^ use of possibly uninitialized `b`
31    |
32    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
33    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
34    = note: for more information, try `rustc --explain E0729`
35
36 error: aborting due to 2 previous errors
37
38 Some errors have detailed explanations: E0005, E0381, E0723.
39 For more information about an error, try `rustc --explain E0005`.