rust/tests/ui/test-attrs/issue-109816.rs
2025-12-03 16:38:24 +01:00

7 lines
174 B
Rust

//@ compile-flags: --test
fn align_offset_weird_strides() {
#[test]
//~^ ERROR the `#[test]` attribute may only be used on a free function
struct A5(u32, u8);
}