2014-07-20 22:27:59 -05:00
|
|
|
// aux-build:lint_group_plugin_test.rs
|
|
|
|
// ignore-stage1
|
|
|
|
// compile-flags: -D lint-me
|
|
|
|
|
2014-12-31 22:43:46 -06:00
|
|
|
#![feature(plugin)]
|
2015-02-06 15:56:38 -06:00
|
|
|
#![plugin(lint_group_plugin_test)]
|
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();
|
|
|
|
}
|