]> git.proxmox.com Git - rustc.git/blob - src/test/ui/borrowck/borrowck-local-borrow.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / borrowck / borrowck-local-borrow.rs
1 // run-fail
2 // error-pattern:panic 1
3 // ignore-emscripten no processes
4
5 fn main() {
6 let x = 2;
7 let y = &x;
8 panic!("panic 1");
9 }