rust/tests/ui/repr/attr-usage-repr.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
614 B
Rust
Raw Normal View History

2015-09-25 06:25:59 +00:00
#![feature(repr_simd)]
#[repr(C)] //~ ERROR: attribute should be applied to a struct, enum, or union
2015-09-25 06:25:59 +00:00
fn f() {}
#[repr(C)]
struct SExtern(f64, f64);
#[repr(packed)]
struct SPacked(f64, f64);
#[repr(simd)]
2024-08-22 08:28:20 +00:00
struct SSimd([f64; 2]);
2015-09-25 06:25:59 +00:00
#[repr(i8)] //~ ERROR: attribute should be applied to an enum
2015-09-25 06:25:59 +00:00
struct SInt(f64, f64);
#[repr(C)]
enum EExtern { A, B }
#[repr(align(8))]
enum EAlign { A, B }
#[repr(packed)] //~ ERROR: attribute should be applied to a struct
2015-09-25 06:25:59 +00:00
enum EPacked { A, B }
#[repr(simd)] //~ ERROR: attribute should be applied to a struct
2015-09-25 06:25:59 +00:00
enum ESimd { A, B }
#[repr(i8)]
enum EInt { A, B }
fn main() {}