rust/src/test/ui-fulldeps/lint-plugin.rs

14 lines
243 B
Rust
Raw Normal View History

// run-pass
2014-06-18 15:46:48 -05:00
// aux-build:lint_plugin_test.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(lint_plugin_test)]
#![allow(dead_code)]
2014-06-18 15:46:48 -05:00
fn lintme() { } //~ WARNING item is named 'lintme'
#[allow(test_lint)]
pub fn main() {
fn lintme() { }
}