mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
12 lines
202 B
Rust
12 lines
202 B
Rust
// Just check we don't get an ICE for `N`.
|
|
|
|
use std::cell::Cell;
|
|
use std::mem;
|
|
|
|
pub struct S {
|
|
s: Cell<usize>,
|
|
}
|
|
|
|
pub const N: usize = 0 - (mem::size_of::<S>() != 400) as usize;
|
|
//~^ ERROR overflow
|