mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 03:32:21 +00:00
9 lines
157 B
Rust
9 lines
157 B
Rust
//@ run-fail
|
|
//@ error-pattern:meh
|
|
//@ ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let str_var: String = "meh".to_string();
|
|
panic!("{}", str_var);
|
|
}
|