]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/issue-66693.stderr
Rollup merge of #106963 - compiler-errors:scope-expr-dupe, r=michaelwoerister
[rust.git] / tests / ui / consts / issue-66693.stderr
1 error: argument to `panic!()` in a const context must have type `&str`
2   --> $DIR/issue-66693.rs:4:15
3    |
4 LL | const _: () = panic!(1);
5    |               ^^^^^^^^^
6    |
7    = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
8
9 error: argument to `panic!()` in a const context must have type `&str`
10   --> $DIR/issue-66693.rs:7:19
11    |
12 LL | static _FOO: () = panic!(true);
13    |                   ^^^^^^^^^^^^
14    |
15    = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
16
17 error: argument to `panic!()` in a const context must have type `&str`
18   --> $DIR/issue-66693.rs:11:5
19    |
20 LL |     panic!(&1);
21    |     ^^^^^^^^^^
22    |
23    = note: this error originates in the macro `$crate::panic::panic_2015` which comes from the expansion of the macro `panic` (in Nightly builds, run with -Z macro-backtrace for more info)
24
25 note: erroneous constant used
26   --> $DIR/issue-66693.rs:11:12
27    |
28 LL |     panic!(&1);
29    |            ^^
30
31 note: erroneous constant used
32   --> $DIR/issue-66693.rs:11:12
33    |
34 LL |     panic!(&1);
35    |            ^^
36
37 error: aborting due to 3 previous errors
38