summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-2445-b.rs
blob: f369eae3af348ed9727a0b5b1d839a3bd6687e70 (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
31
// run-pass
#![allow(dead_code)]
#![allow(non_camel_case_types)]

// pretty-expanded FIXME #23616

struct c1<T> {
    x: T,
}

impl<T> c1<T> {
    pub fn f1(&self, _x: isize) {
    }
}

fn c1<T>(x: T) -> c1<T> {
    c1 {
        x: x
    }
}

impl<T> c1<T> {
    pub fn f2(&self, _x: isize) {
    }
}


pub fn main() {
    c1::<isize>(3).f1(4);
    c1::<isize>(3).f2(4);
}