mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00
7 lines
161 B
Rust
7 lines
161 B
Rust
// revisions: old next
|
|
//[next] compile-flags: -Znext-solver
|
|
|
|
struct Foo<const N: u8 = { 255 + 1 }>;
|
|
//~^ ERROR evaluation of constant value failed
|
|
fn main() {}
|