1bede1f5e0
This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages...
15 lines
225 B
Rust
15 lines
225 B
Rust
struct defer {
|
|
x: &[&str],
|
|
drop { error!("%?", self.x); }
|
|
}
|
|
|
|
fn defer(x: &r/[&r/str]) -> defer/&r {
|
|
defer {
|
|
x: x
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let _x = defer(~["Goodbye", "world!"]); //~ ERROR illegal borrow
|
|
}
|