rustc/tests/ui/const-generics/defaults/default-param-wf-concrete.rs
2024-06-21 09:39:33 +02:00

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