5 lines
95 B
Rust
5 lines
95 B
Rust
|
fn main() {
|
||
|
let val = "Value".to_string();
|
||
|
panic!("Miri panic with value: {}", val);
|
||
|
}
|