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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
99 B
Rust
Raw Normal View History

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