rustc/tests/ui/consts/const-size_of-cycle.rs
2023-08-02 10:33:26 +02:00

8 lines
107 B
Rust

// error-pattern: cycle detected
struct Foo {
bytes: [u8; std::mem::size_of::<Foo>()]
}
fn main() {}