about summary refs log tree commit diff
path: root/tests/ui/consts/const-size_of-cycle.rs
blob: f45d96d43f80d59e077398d0017e76a770befe33 (plain)
1
2
3
4
5
6
struct Foo {
    bytes: [u8; std::mem::size_of::<Foo>()]
    //~^ ERROR cycle detected when evaluating type-level constant
}

fn main() {}