80f9484c86
Miri currently does not support `GetProcAddress` and `GetModuleHandleW`, both of which end up getting invoked by the libstd panic hook.
6 lines
166 B
Rust
6 lines
166 B
Rust
// ignore-windows: Unwind panicking does not currently work on Windows
|
|
fn main() {
|
|
let val = "Value".to_string();
|
|
panic!("Miri panic with value: {}", val);
|
|
}
|