blob: 04230a8e883b1587875de62291048ea7c1da4093 [file] [log] [blame]
// aux-build:lint-plugin-test.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(lint_plugin_test)]
//~^ WARN use of deprecated attribute `plugin`
#![deny(test_lint)]
fn lintme() { } //~ ERROR item is named 'lintme'
pub fn main() {
lintme();
}