blob: 1cc16e2fd1c9edde0e73fa0fcd9c71825bce1215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// check-pass
// aux-build:lint-plugin-test.rs
// ignore-stage1
// compile-flags: -A test-lint
#![feature(plugin)]
#![plugin(lint_plugin_test)] //~ WARNING compiler plugins are deprecated
fn lintme() { }
pub fn main() {
}
|