rust/tests/ui/consts/issue-32829.stderr

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

12 lines
544 B
Plaintext
Raw Normal View History

2021-10-04 04:33:43 +00:00
error[E0080]: could not evaluate static initializer
2018-12-25 15:56:47 +00:00
--> $DIR/issue-32829.rs:1:22
2018-07-15 21:11:54 +00:00
|
LL | static S : u64 = { { panic!("foo"); 0 } };
2021-10-14 18:28:28 +00:00
| ^^^^^^^^^^^^^ the evaluated program panicked at 'foo', $DIR/issue-32829.rs:1:22
2018-07-15 21:11:54 +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)
2018-07-15 21:11:54 +00:00
error: aborting due to previous error
2021-10-04 04:33:43 +00:00
For more information about this error, try `rustc --explain E0080`.