rustc/tests/ui/const-generics/defaults/default-param-wf-concrete.rs
2023-08-02 10:33:26 +02:00

4 lines
99 B
Rust

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