blob: 6cd791b949c9d02d2fb0b949df2b943b6cfc7b36 [file] [log] [blame] [edit]
error: argument to `panic!()` in a const context must have type `&str`
--> $DIR/issue-66693.rs:5:15
|
LL | const _: () = panic!(1);
| ^^^^^^^^^
error: argument to `panic!()` in a const context must have type `&str`
--> $DIR/issue-66693.rs:8:19
|
LL | static _FOO: () = panic!(true);
| ^^^^^^^^^^^^
error[E0080]: evaluation panicked: explicit panic
--> $DIR/issue-66693.rs:17:15
|
LL | const _: () = panic!();
| ^^^^^^^^ evaluation of `_` failed here
error[E0080]: evaluation panicked: panic in static
--> $DIR/issue-66693.rs:19:19
|
LL | static _BAR: () = panic!("panic in static");
| ^^^^^^^^^^^^^^^^^^^^^^^^^ evaluation of `_BAR` failed here
error: argument to `panic!()` in a const context must have type `&str`
--> $DIR/issue-66693.rs:12:5
|
LL | panic!(&1);
| ^^^^^^^^^^
error: aborting due to 5 previous errors
For more information about this error, try `rustc --explain E0080`.