rust/tests/ui/const-generics/defaults/default-param-wf-concrete.rs

7 lines
161 B
Rust
Raw Normal View History

// revisions: old next
2023-12-14 12:11:28 +00:00
//[next] compile-flags: -Znext-solver
struct Foo<const N: u8 = { 255 + 1 }>;
//~^ ERROR evaluation of constant value failed
fn main() {}