about summary refs log tree commit diff
path: root/tests/ui/borrowck/borrowck-local-borrow.rs
blob: 4d22503e37baea4f92942ac6795cebcb05f90fe5 (plain)
1
2
3
4
5
6
7
8
9
//@ run-fail
//@ error-pattern:panic 1
//@ needs-subprocess

fn main() {
    let x = 2;
    let y = &x;
    panic!("panic 1");
}