DEBSOURCES
Skip Quicknav
sources / rustc / 1.89.0%2Bdfsg1-1 / tests / ui / borrowck / borrowck-local-borrow.rs
123456789
//@ run-fail //@ error-pattern:panic 1 //@ needs-subprocess fn main() { let x = 2; let y = &x; panic!("panic 1"); }