rust/tests/ui/const-generics/defaults/default-param-wf-concrete.rs
2023-12-14 15:22:37 +01:00

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() {}