mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
30 lines
797 B
Rust
30 lines
797 B
Rust
//@aux-build:proc_macro_attr.rs
|
|
#![feature(rustc_attrs)]
|
|
#![warn(clippy::duplicated_attributes)]
|
|
#![cfg(any(unix, windows))]
|
|
#![allow(dead_code)]
|
|
#![allow(dead_code)] //~ ERROR: duplicated attribute
|
|
#![cfg(any(unix, windows))] // Should not warn!
|
|
|
|
#[macro_use]
|
|
extern crate proc_macro_attr;
|
|
|
|
#[cfg(any(unix, windows, target_os = "linux"))]
|
|
#[allow(dead_code)]
|
|
#[allow(dead_code)] //~ ERROR: duplicated attribute
|
|
#[cfg(any(unix, windows, target_os = "linux"))] // Should not warn!
|
|
fn foo() {}
|
|
|
|
#[cfg(unix)]
|
|
#[cfg(windows)]
|
|
#[cfg(unix)] // cfgs are not handled
|
|
fn bar() {}
|
|
|
|
// No warning:
|
|
#[rustc_on_unimplemented(on(_Self = "&str", label = "`a"), on(_Self = "alloc::string::String", label = "a"))]
|
|
trait Abc {}
|
|
|
|
#[proc_macro_attr::duplicated_attr()] // Should not warn!
|
|
fn babar() {}
|
|
|
|
fn main() {}
|