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