mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +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() {}
|