blob: 763f85748736e315a3210f342874e1d09cf926bf [file] [log] [blame]
#![feature(core_intrinsics)]
use std::intrinsics;
struct Foo {
bytes: [u8; unsafe { intrinsics::size_of::<Foo>() }],
//~^ ERROR cycle detected when const-evaluating + checking
x: usize,
}
fn main() {}