]> git.proxmox.com Git - rustc.git/blame - tests/ui-fulldeps/lint-plugin.rs
New upstream version 1.70.0+dfsg2
[rustc.git] / tests / ui-fulldeps / lint-plugin.rs
CommitLineData
7cac9316 1// run-pass
532ac7d7 2// aux-build:lint-plugin-test.rs
1a4d82fc 3// ignore-stage1
1a4d82fc 4#![feature(plugin)]
e74abb32 5#![plugin(lint_plugin_test)] //~ WARNING use of deprecated attribute
9e0c209e 6#![allow(dead_code)]
223e47cc 7
1a4d82fc 8fn lintme() { } //~ WARNING item is named 'lintme'
223e47cc 9
1a4d82fc 10#[allow(test_lint)]
223e47cc 11pub fn main() {
1a4d82fc 12 fn lintme() { }
223e47cc 13}