rust/src/test/run-pass/method-attributes.rs

25 lines
340 B
Rust
Raw Normal View History

// pp-exact - Make sure we print all the attributes
#[frobable]
trait frobable {
#[frob_attr]
fn frob();
#[defrob_attr]
fn defrob();
}
#[int_frobable]
2012-08-07 20:10:06 -05:00
impl int: frobable {
#[frob_attr1]
fn frob() {
#[frob_attr2];
}
#[defrob_attr1]
fn defrob() {
#[defrob_attr2];
}
}
fn main() { }