rust/src/test/compile-fail/borrowck-borrowed-uniq-rvalue-2.rs

15 lines
225 B
Rust
Raw Normal View History

struct defer {
x: &[&str],
drop { #error["%?", self.x]; }
}
2012-09-05 17:58:43 -05:00
fn defer(x: &r/[&r/str]) -> defer/&r {
defer {
x: x
}
}
fn main() {
let _x = defer(~["Goodbye", "world!"]); //~ ERROR illegal borrow
}