25 lines
343 B
Rust
25 lines
343 B
Rust
// pp-exact - Make sure we print all the attributes
|
|
|
|
#[frobable]
|
|
iface frobable {
|
|
#[frob_attr]
|
|
fn frob();
|
|
#[defrob_attr]
|
|
fn defrob();
|
|
}
|
|
|
|
#[int_frobable]
|
|
impl frobable for int {
|
|
#[frob_attr1]
|
|
fn frob() {
|
|
#[frob_attr2];
|
|
}
|
|
|
|
#[defrob_attr1]
|
|
fn defrob() {
|
|
#[defrob_attr2];
|
|
}
|
|
}
|
|
|
|
fn main() { }
|