2019-11-08 00:00:00 +00:00
|
|
|
// check-pass
|
2019-03-12 00:49:17 +00:00
|
|
|
// aux-build:lint-plugin-test.rs
|
2014-06-18 13:46:48 -07:00
|
|
|
// ignore-stage1
|
|
|
|
// compile-flags: -A test-lint
|
|
|
|
|
2014-12-31 20:43:46 -08:00
|
|
|
#![feature(plugin)]
|
2019-11-08 00:00:00 +00:00
|
|
|
#![plugin(lint_plugin_test)] //~ WARNING compiler plugins are deprecated
|
2014-06-18 13:46:48 -07:00
|
|
|
|
|
|
|
fn lintme() { }
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
}
|