rust/src/test/ui/consts/issue-66693.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.3 KiB
Plaintext
Raw Normal View History

error: argument to `panic!()` in a const context must have type `&str`
2021-10-04 04:33:43 +00:00
--> $DIR/issue-66693.rs:4:15
|
LL | const _: () = panic!(1);
| ^^^^^^^^^
|
= 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)
error: argument to `panic!()` in a const context must have type `&str`
2021-10-04 04:33:43 +00:00
--> $DIR/issue-66693.rs:7:19
|
LL | static _FOO: () = panic!(true);
| ^^^^^^^^^^^^
|
= 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)
error: argument to `panic!()` in a const context must have type `&str`
2021-10-04 04:33:43 +00:00
--> $DIR/issue-66693.rs:11:5
|
LL | panic!(&1);
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^
|
= 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)
2022-09-21 11:05:20 +00:00
error[E0080]: erroneous constant used
--> $DIR/issue-66693.rs:11:12
|
LL | panic!(&1);
| ^^ referenced constant has errors
error: aborting due to 4 previous errors
2022-09-21 11:05:20 +00:00
For more information about this error, try `rustc --explain E0080`.