summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0401.rs
blob: c30e5f47188715df6f6d9d083e4f552ce5095205 (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
30
trait Baz<T> {}

fn foo<T>(x: T) {
    fn bfnr<U, V: Baz<U>, W: Fn()>(y: T) { //~ ERROR E0401
    }
    fn baz<U,
           V: Baz<U>,
           W: Fn()>
           (y: T) { //~ ERROR E0401
    }
    bfnr(x); //~ ERROR type annotations needed
}


struct A<T> {
    inner: T,
}

impl<T> Iterator for A<T> {
    type Item = u8;
    fn next(&mut self) -> Option<u8> {
        fn helper(sel: &Self) -> u8 { //~ ERROR E0401
            unimplemented!();
        }
        Some(helper(self))
    }
}

fn main() {
}