summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/anon-static-method.rs
blob: ede01afae0294c71160ef132c7ed0d0c1c4f0a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
struct Foo {
    x: isize
}

impl Foo {
    pub fn new() -> Foo {
        Foo { x: 3 }
    }
}

pub fn main() {
    let x = Foo::new();
    println!("{}", x.x);
}