rust/src/test/ui/panics/fmt-panic.rs

8 lines
120 B
Rust
Raw Normal View History

2020-04-16 01:50:32 -05:00
// run-fail
// error-pattern:meh
fn main() {
let str_var: String = "meh".to_string();
panic!("{}", str_var);
}