summary refs log tree commit diff
path: root/src/test/ui-fulldeps/lint-plugin.rs
blob: 031f3b86b1438e1b5cde839216c6ec7318663a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// run-pass
// aux-build:lint_plugin_test.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(lint_plugin_test)]
#![allow(dead_code)]

fn lintme() { } //~ WARNING item is named 'lintme'

#[allow(test_lint)]
pub fn main() {
    fn lintme() { }
}