Files
rust/src/test/ui/const-generics/issues/issue-60818-struct-constructors.rs

11 lines
243 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
struct Generic<const V: usize>;
fn main() {
let _ = Generic::<0>;
}