rust/tests/ui/inference/need_type_info/do-not-suggest-generic-argu...

12 lines
132 B
Rust

enum OhNo<T, U> {
A(T),
B(U),
C,
}
fn uwu() {
OhNo::C::<u32, _>; //~ ERROR type annotations needed
}
fn main() {}