2019-11-30 02:31:25 -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
|
2019-11-30 02:31:25 -06:00
|
|
|
// compile-flags: -Z crate-attr=plugin(lint_plugin_test)
|
2014-06-18 15:46:48 -05:00
|
|
|
|
2019-11-30 02:31:25 -06:00
|
|
|
#![feature(plugin)]
|
2016-08-22 18:51:37 -05:00
|
|
|
|
2014-12-19 20:39:43 -06:00
|
|
|
fn lintme() { } //~ WARNING item is named 'lintme'
|
2014-06-18 15:46:48 -05:00
|
|
|
|
2014-12-19 20:39:43 -06:00
|
|
|
#[allow(test_lint)]
|
2014-06-18 15:46:48 -05:00
|
|
|
pub fn main() {
|
2014-12-19 20:39:43 -06:00
|
|
|
fn lintme() { }
|
2014-06-18 15:46:48 -05:00
|
|
|
}
|