mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-05 00:45:33 +00:00
12 lines
219 B
Rust
12 lines
219 B
Rust
#![feature(core_intrinsics)]
|
|
|
|
use std::intrinsics;
|
|
|
|
struct Foo {
|
|
bytes: [u8; unsafe { intrinsics::size_of::<Foo>() }],
|
|
//~^ ERROR cycle detected when evaluating type-level constant
|
|
x: usize,
|
|
}
|
|
|
|
fn main() {}
|