Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
lint
/
lint-forbid-cmdline-2.rs
blob: 3505c11f4201199631debea38c8699cbf3741bc9 [
file
] [
edit
]
//@ compile-flags: -F dead_code
#[
allow
(
unused
)]
//~^ ERROR allow(unused) incompatible with previous forbid [E0453]
//~| NOTE overruled by previous forbid
//~| NOTE `forbid` lint level was set on command line (`-F dead_code`)
fn
main
()
{
}