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
|
2022-06-21 02:25:52 +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
2023-11-21 15:44:16 +00:00
error: aborting due to 1 previous error
2018-07-15 21:11:54 +00:00
2021-10-04 04:33:43 +00:00
For more information about this error, try `rustc --explain E0080`.