summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-consts/issue-93835.rs
blob: b2a437fcbfb85f242f06c8eb4478ecf6aa5b1a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(type_ascription)]

fn e() {
    type_ascribe!(p, a<p:p<e=6>>);
    //~^ ERROR cannot find type `a` in this scope
    //~| ERROR cannot find value
    //~| ERROR associated const equality
    //~| ERROR cannot find trait `p` in this scope
    //~| ERROR associated type bounds
}

fn main() {}