mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
11 lines
358 B
Rust
11 lines
358 B
Rust
#[doc] //~ ERROR valid forms for the attribute are
|
|
//~^ WARN this was previously accepted
|
|
#[ignore()] //~ ERROR valid forms for the attribute are
|
|
//~^ WARN this was previously accepted
|
|
#[inline = ""] //~ ERROR valid forms for the attribute are
|
|
//~^ WARN this was previously accepted
|
|
#[link] //~ ERROR malformed
|
|
#[link = ""] //~ ERROR malformed
|
|
|
|
fn main() {}
|