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 10:57:49 -05:00
// check-pass
2020-11-11 16:49:09 -06:00
trait Foo<const KIND: bool = true> {}
fn main() {}