mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
10 lines
204 B
Rust
10 lines
204 B
Rust
![]() |
//@ check-pass
|
||
|
#![crate_type = "lib"]
|
||
|
#![warn(unused_attributes)]
|
||
|
#![allow(linker_messages)]
|
||
|
//~^ WARNING unused attribute
|
||
|
|
||
|
#[allow(linker_messages)]
|
||
|
//~^ WARNING should be an inner attribute
|
||
|
fn foo() {}
|