Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui-fulldeps
/
lint-plugin-deny-cmdline.rs
blob: 87324e85b3be7b1288bdc6946e976ae57d7aec94 [
file
] [
log
] [
blame
]
// aux-build:lint-plugin-test.rs
// ignore-stage1
// compile-flags: -D test-lint
#![
feature
(
plugin
)]
#![
plugin
(
lint_plugin_test
)]
fn
lintme
()
{
}
//~ ERROR item is named 'lintme'
pub
fn
main
()
{
lintme
();
}