blob: 6e64c78cd8c96979fa135386b1bea79b1cc96b4c [file] [log] [blame]
// 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>;
}