summaryrefslogtreecommitdiffstats
path: root/src/test/ui/inference/need_type_info/do-not-suggest-generic-arguments-for-turbofish.rs
blob: 3084f6eac67ab7e4e9858fcc220be646b86f4377 (plain)
1
2
3
4
5
6
7
8
9
10
11
enum OhNo<T, U> {
    A(T),
    B(U),
    C,
}

fn uwu() {
    OhNo::C::<u32, _>; //~ ERROR type annotations needed
}

fn main() {}