Files
rust/tests/ui/parser/encode-symbol-ice-12920.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
195 B
Rust
Raw Normal View History

2025-07-24 17:22:54 +05:00
//! Regression test for https://github.com/rust-lang/rust/issues/12920
2020-04-16 15:50:32 +09:00
//@ run-fail
//@ error-pattern:explicit panic
//@ needs-subprocess
pub fn main() {
2016-05-27 08:09:36 +05:30
panic!();
println!("{}", 1);
}