]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.dg/gdc253b.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / gdc253b.d
CommitLineData
844fa2de
IB
1// https://bugzilla.gdcproject.org/show_bug.cgi?id=253
2// { dg-additional-sources "imports/gdc253b.d" }
3// { dg-options "-I $srcdir/gdc.dg" }
4// { dg-do compile }
5
6import imports.gdc253b;
7
8interface A253
9{
10 void test253(int[int]);
11}
12
13interface C253 : A253
14{
15}
16
17class D253 : B253, C253
18{
19}