rust-clippy/tests/ui/allow_attributes.fixed

26 lines
564 B
Rust
Raw Normal View History

2023-03-10 23:23:58 +00:00
// run-rustfix
#![allow(unused)]
2023-03-15 22:18:25 +00:00
#![warn(clippy::allow_attributes)]
2023-03-10 23:23:58 +00:00
#![feature(lint_reasons)]
fn main() {}
// Using clippy::needless_borrow just as a placeholder, it isn't relevant.
// Should lint
#[expect(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", expect(dead_code))]
struct CfgT;
fn ignore_inner_attr() {
#![allow(unused)] // Should not lint
}