2019-03-12 00:49:17 +00:00
|
|
|
// aux-build:lint-group-plugin-test.rs
|
2014-07-21 15:27:59 +12:00
|
|
|
// ignore-stage1
|
|
|
|
// compile-flags: -D lint-me
|
|
|
|
|
2014-12-31 20:43:46 -08:00
|
|
|
#![feature(plugin)]
|
2019-10-03 09:33:28 +02:00
|
|
|
|
2015-02-06 13:56:38 -08:00
|
|
|
#![plugin(lint_group_plugin_test)]
|
2019-10-03 09:33:28 +02:00
|
|
|
//~^ WARN use of deprecated attribute `plugin`
|
2014-07-21 15:27:59 +12:00
|
|
|
|
|
|
|
fn lintme() { } //~ ERROR item is named 'lintme'
|
|
|
|
|
|
|
|
fn pleaselintme() { } //~ ERROR item is named 'pleaselintme'
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
lintme();
|
|
|
|
pleaselintme();
|
|
|
|
}
|