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

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

    fn test() -> i32 {
        test()
    }

    fn test() -> bool { // { dg-error "redefined multiple times" }
        true
    }
}

fn test() -> i32 {
    123
}

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

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