]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-consts/defaults-not-assumed-fail.stderr
Rollup merge of #89821 - crlf0710:unsafe_code_lint_test, r=Mark-Simulacrum
[rust.git] / src / test / ui / associated-consts / defaults-not-assumed-fail.stderr
1 error: any use of this value will cause an error
2   --> $DIR/defaults-not-assumed-fail.rs:8:19
3    |
4 LL |     const B: u8 = Self::A + 1;
5    |     --------------^^^^^^^^^^^-
6    |                   |
7    |                   attempt to compute `u8::MAX + 1_u8`, which would overflow
8    |
9    = note: `#[deny(const_err)]` on by default
10    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
11    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
12
13 error[E0080]: evaluation of constant value failed
14   --> $DIR/defaults-not-assumed-fail.rs:34:16
15    |
16 LL |     assert_eq!(<() as Tr>::B, 0);    // causes the error above
17    |                ^^^^^^^^^^^^^ referenced constant has errors
18
19 error: erroneous constant used
20   --> $DIR/defaults-not-assumed-fail.rs:34:5
21    |
22 LL |     assert_eq!(<() as Tr>::B, 0);    // causes the error above
23    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
24    |
25    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
26    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
27    = note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
28
29 error: aborting due to 3 previous errors
30
31 For more information about this error, try `rustc --explain E0080`.