summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/gdc282.d
blob: 93e11fa0cbce309c69b3700823765a42b630c730 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// https://bugzilla.gdcproject.org/show_bug.cgi?id=282
// { dg-shouldfail "conflicting methods in class" }
// { dg-do compile }

class C282a
{
    void fun()
    {
    }

    void f282()
    {
    }

    void f282() // { dg-error "conflicts with previous declaration" }
    {
    }
}

class C282b
{
    struct S282b
    {
    }

    void f282()
    {
    }

    void f282() // { dg-error "conflicts with previous declaration" }
    {
    }
}

class C282c
{
    class C282c
    {
    }

    void f282()
    {
    }

    void f282() // { dg-error "conflicts with previous declaration" }
    {
    }
}