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: -D test-lint
|
|
|
|
|
2014-12-31 20:43:46 -08:00
|
|
|
#![feature(plugin)]
|
2015-02-06 13:56:38 -08:00
|
|
|
#![plugin(lint_plugin_test)]
|
2019-10-03 09:33:28 +02:00
|
|
|
//~^ WARN use of deprecated attribute `plugin`
|
2014-06-18 13:46:48 -07:00
|
|
|
|
|
|
|
fn lintme() { } //~ ERROR item is named 'lintme'
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
lintme();
|
|
|
|
}
|