2012-08-17 19:30:29 -05:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-17 19:30:29 -05:00
|
|
|
fn main() {
|
|
|
|
let _x = defer(~["Goodbye", "world!"]); //~ ERROR illegal borrow
|
|
|
|
}
|