summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/defaults/default-param-wf-concrete.rs
blob: aa3307b92e43c828ee61a64eec0ae0a9164afbc2 (plain)
1
2
3
4
5
6
// revisions: old next
//[next] compile-flags: -Znext-solver

struct Foo<const N: u8 = { 255 + 1 }>;
//~^ ERROR evaluation of constant value failed
fn main() {}