aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/impl_block1.rs
blob: d67afa187b1574c3baa36e017d6b5d7466d36c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
struct Foo(i32, bool);

impl Foo {
    fn new(a: i32, b: bool) -> Foo {
        Foo(a, b)
    }

    fn test2() -> i32 {
        test_forward_decl()
    }
}

fn test_forward_decl() -> i32 {
    123
}

fn main() {
    let a;
    a = Foo::new(1, true);

    let b;
    b = Foo::test2();
}