rust/tests/ui/const-generics/defaults/default-on-impl.rs

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

7 lines
136 B
Rust
Raw Normal View History

2021-04-18 06:57:22 -05:00
struct Foo<const N: usize>;
impl<const N: usize = 1> Foo<N> {}
//~^ ERROR defaults for const parameters are only allowed
fn main() {}