summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/issue-84831.rs
blob: c646f71072532a4631ddfd8009793527b796ddcc (plain)
1
2
3
4
5
6
7
8
9
fn f() {
    std::<0>; //~ ERROR expected value
}
fn j() {
    std::<_ as _>; //~ ERROR expected value
    //~^ ERROR expected one of `,` or `>`, found keyword `as`
}

fn main () {}