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