mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
225 B
Rust
13 lines
225 B
Rust
// 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() {
|
|
}
|