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