mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00
13 lines
234 B
Rust
13 lines
234 B
Rust
![]() |
//@ check-pass
|
||
|
#[diagnostic::non_existing_attribute]
|
||
|
//~^WARN unknown diagnostic attribute
|
||
|
pub trait Bar {
|
||
|
}
|
||
|
|
||
|
#[diagnostic::non_existing_attribute(with_option = "foo")]
|
||
|
//~^WARN unknown diagnostic attribute
|
||
|
struct Foo;
|
||
|
|
||
|
fn main() {
|
||
|
}
|