blob: ce034ee38d70c115df122f6819a3c1d8d223f92d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// aux-build:lint-plugin-test.rs
// ignore-stage1
// compile-flags: -F test-lint
#![feature(plugin)]
#![plugin(lint_plugin_test)]
//~^ WARN use of deprecated attribute `plugin`
fn lintme() { } //~ ERROR item is named 'lintme'
#[allow(test_lint)] //~ ERROR allow(test_lint) incompatible
//~| ERROR allow(test_lint) incompatible
//~| ERROR allow(test_lint)
pub fn main() {
lintme();
}
|