Sign in
rust
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
lint
/
bad-lint-cap2.rs
blob: 193f967671db0d405c5f6dfa6694d5524ba05b15 [
file
] [
log
] [
blame
]
//@ compile-flags: --cap-lints deny
#![
warn
(
unused
)]
#![
deny
(
warnings
)]
use
std
::
option
;
//~ ERROR
fn
main
()
{}