summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/ufcs-type-params.rs
blob: eee2b55b2a01e99c22159d463fbc91ffa5330226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
// pretty-expanded FIXME #23616

trait Foo<T> {
    fn get(&self) -> T;
}

impl Foo<i32> for i32 {
    fn get(&self) -> i32 { *self }
}

fn main() {
    let x: i32 = 1;
    Foo::<i32>::get(&x);
}