rust/src/test/compile-fail/regions-ret.rs
2012-08-01 19:16:06 -07:00

8 lines
88 B
Rust

fn f(_x : &a/int) -> &a/int {
return &3; //~ ERROR illegal borrow
}
fn main() {
}