summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/pr101672.d
blob: 8b337a4cf19553cd87fab07d796a351f455af7c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101672
// { dg-do compile }

module object;

interface I101672
{
    static int i101672;
}

class A101672 : I101672
{
    static int a101672;
}

class B101672 : A101672
{
    static int b101672;
}