rust/tests/ui/const-generics/min_const_generics/default_trait_param.rs

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

5 lines
66 B
Rust
Raw Normal View History

2021-10-23 16:57:49 +01:00
// check-pass
2020-11-11 22:49:09 +00:00
trait Foo<const KIND: bool = true> {}
fn main() {}