8 lines
231 B
Rust
8 lines
231 B
Rust
//@ compile-flags: --test
|
|
//@ reference: attributes.testing.test.allowed-positions
|
|
|
|
fn align_offset_weird_strides() {
|
|
#[test]
|
|
//~^ ERROR the `#[test]` attribute may only be used on a free function
|
|
struct A5(u32, u8);
|
|
}
|