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