mirror of
https://git.proxmox.com/git/rustc
synced 2026-02-01 22:09:39 +00:00
9 lines
154 B
Rust
9 lines
154 B
Rust
// run-fail
|
|
// error-pattern:meh
|
|
// ignore-emscripten no processes
|
|
|
|
fn main() {
|
|
let str_var: String = "meh".to_string();
|
|
panic!("{}", str_var);
|
|
}
|