blob: 8017379ab3d44e553b3565facec30d993a51ff7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// run-pass
// aux-build:lint-plugin-test.rs
// ignore-stage1
// compile-flags: -A test-lint
#![feature(plugin)]
#![warn(unused)]
#![plugin(lint_plugin_test)]
fn lintme() { }
pub fn main() {
}
|