rust/tests/ui/panics/fmt-panic.rs

9 lines
157 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:meh
//@ ignore-emscripten no processes
fn main() {
let str_var: String = "meh".to_string();
panic!("{}", str_var);
}