Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
tool-attributes
/
tool_lints-fail.rs
blob: 5cbd63be597fa3bf818f9a6e4dc57d479e86149c [
file
] [
log
] [
blame
]
// Don't allow tool_lints, which aren't scoped
#![
deny
(
unknown_lints
)]
#![
deny
(
clippy
)]
//~ ERROR: unknown lint: `clippy`
fn
main
()
{}