rust/tests/ui/enum/error-variant-with-turbofishes.rs
Michael Goulet 9d72808b1e Add test
2024-04-15 18:48:12 -04:00

9 lines
191 B
Rust

enum Struct<const N: usize> { Variant { x: [(); N] } }
fn test() {
let x = Struct::<0>::Variant;
//~^ ERROR expected value, found struct variant `Struct<0>::Variant`
}
fn main() {}