blob: 6e64c78cd8c96979fa135386b1bea79b1cc96b4c (
plain)
1
2
3
4
5
6
7
8
9
|
// check-pass
// revisions: full min
#![cfg_attr(full, feature(const_generics))] //[full]~WARN the feature `const_generics` is incomplete
struct Generic<const V: usize>;
fn main() {
let _ = Generic::<0>;
}
|