summaryrefslogtreecommitdiffstats
path: root/tests/ui/did_you_mean/issue-40396.rs
blob: 5497ba2e11f7325bbecaff305b7ef5ec3823aeae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
fn main() {
    (0..13).collect<Vec<i32>>();
    //~^ ERROR comparison operators cannot be chained
    //~| HELP use `::<...>` instead
    Vec<i32>::new();
    //~^ ERROR comparison operators cannot be chained
    //~| HELP use `::<...>` instead
    (0..13).collect<Vec<i32>();
    //~^ ERROR comparison operators cannot be chained
    //~| HELP use `::<...>` instead
    let x = std::collections::HashMap<i128, i128>::new(); //~ ERROR expected one of
    //~^ HELP use `::<...>` instead
    let x: () = 42; //~ ERROR mismatched types
    let x = {
        std::collections::HashMap<i128, i128>::new() //~ ERROR expected one of
        //~^ HELP use `::<...>` instead
    };
    let x: () = 42; //~ ERROR mismatched types
    let x = {
        std::collections::HashMap<i128, i128>::new(); //~ ERROR expected one of
        //~^ HELP use `::<...>` instead
        let x: () = 42; //~ ERROR mismatched types
    };
    {
        std::collections::HashMap<i128, i128>::new(1, 2); //~ ERROR expected one of
        //~^ HELP use `::<...>` instead
        let x: () = 32; //~ ERROR mismatched types
    };
}