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

13 lines
269 B
Rust
Raw Normal View History

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