Files
rust/tests/ui/borrowck/borrowck-local-borrow.rs

10 lines
129 B
Rust
Raw Normal View History

//@ run-fail
//@ error-pattern:panic 1
//@ needs-subprocess
fn main() {
let x = 2;
let y = &x;
panic!("panic 1");
}