rust/src/test/run-pass/class-attributes-1.rs

12 lines
267 B
Rust
Raw Normal View History

// pp-exact - Make sure we actually print the attributes
2012-08-16 21:26:10 +00:00
struct cat {
#[cat_maker]
new(name: ~str) { self.name = name; }
#[cat_dropper]
2012-08-23 00:24:52 +00:00
drop { error!("%s landed on hir feet",self.name); }
name: ~str,
}
fn main() { let _kitty = cat(~"Spotty"); }