]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/defaults/default-param-wf-concrete.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / const-generics / defaults / default-param-wf-concrete.rs
1 struct Foo<const N: u8 = { 255 + 1 }>;
2 //~^ ERROR evaluation of constant value failed
3 fn main() {}