mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 00:56:14 +00:00
15 lines
361 B
Rust
15 lines
361 B
Rust
|
#![deny(unused_attributes)]
|
||
|
#![allow()] //~ ERROR unused attribute
|
||
|
#![warn()] //~ ERROR unused attribute
|
||
|
#![deny()] //~ ERROR unused attribute
|
||
|
#![forbid()] //~ ERROR unused attribute
|
||
|
#![feature()] //~ ERROR unused attribute
|
||
|
|
||
|
#[repr()] //~ ERROR unused attribute
|
||
|
pub struct S;
|
||
|
|
||
|
#[target_feature()] //~ ERROR unused attribute
|
||
|
pub unsafe fn foo() {}
|
||
|
|
||
|
fn main() {}
|