blob: 87324e85b3be7b1288bdc6946e976ae57d7aec94 [file] [log] [blame]
// aux-build:lint-plugin-test.rs
// ignore-stage1
// compile-flags: -D test-lint
#![feature(plugin)]
#![plugin(lint_plugin_test)]
fn lintme() { } //~ ERROR item is named 'lintme'
pub fn main() {
lintme();
}