mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
8 lines
184 B
Rust
8 lines
184 B
Rust
//@ compile-flags: --test
|
|
|
|
fn align_offset_weird_strides() {
|
|
#[test]
|
|
//~^ ERROR the `#[test]` attribute may only be used on a non-associated function
|
|
struct A5(u32, u8);
|
|
}
|