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