rust/tests/ui/parser/encode-symbol-ice-12920.rs
2025-07-31 21:25:49 +05:00

11 lines
195 B
Rust

//! Regression test for https://github.com/rust-lang/rust/issues/12920
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
pub fn main() {
panic!();
println!("{}", 1);
}