rust/tests/ui/allow_attributes.rs

26 lines
562 B
Rust
Raw Normal View History

//@run-rustfix
2023-03-10 17:23:58 -06:00
#![allow(unused)]
2023-03-15 17:18:25 -05:00
#![warn(clippy::allow_attributes)]
2023-03-10 17:23:58 -06:00
#![feature(lint_reasons)]
fn main() {}
// Using clippy::needless_borrow just as a placeholder, it isn't relevant.
// Should lint
#[allow(dead_code)]
struct T1;
struct T2; // Should not lint
#[deny(clippy::needless_borrow)] // Should not lint
struct T3;
#[warn(clippy::needless_borrow)] // Should not lint
struct T4;
// `panic = "unwind"` should always be true
#[cfg_attr(panic = "unwind", allow(dead_code))]
struct CfgT;
fn ignore_inner_attr() {
#![allow(unused)] // Should not lint
}