blob: f9922f7f6060e8be836ed69d0204bda7216e7f70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// aux-build:attr_plugin_test.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(attr_plugin_test)]
#![deny(unused_attributes)]
#[baz]
fn baz() { } // no error
#[foo]
pub fn main() {
//~^^ ERROR unused
#[bar]
fn inner() {}
//~^^ ERROR crate
//~^^^ ERROR unused
baz();
inner();
}
|