blob: 2301b45f7ddbb80386953d02fca0142d41c1699e [file] [log] [blame]
// pp-exact - Make sure we print all the attributes
#[frobable]
trait frobable {
#[frob_attr]
fn frob();
#[defrob_attr]
fn defrob();
}
#[int_frobable]
impl int: frobable {
#[frob_attr1]
fn frob() {
#[frob_attr2];
}
#[defrob_attr1]
fn defrob() {
#[defrob_attr2];
}
}
fn main() { }