12 lines
267 B
Rust
12 lines
267 B
Rust
// pp-exact - Make sure we actually print the attributes
|
|
|
|
struct cat {
|
|
#[cat_maker]
|
|
new(name: ~str) { self.name = name; }
|
|
#[cat_dropper]
|
|
drop { error!("%s landed on hir feet",self.name); }
|
|
name: ~str,
|
|
}
|
|
|
|
fn main() { let _kitty = cat(~"Spotty"); }
|