summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/impl_block2.rs
blob: 0ed592d07be1cec800ff6a81081432a95363445e (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
struct Foo(i32, bool);

impl Foo {
    const number: i32 = 456;

    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();

    let c;
    c = Foo::new(Foo::number, true);
}