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