]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/runnable/imports/a21a.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / a21a.d
CommitLineData
b4c522fa
IB
1module imports.a21a;
2
5fee5ec3 3import core.stdc.stdio;
b4c522fa
IB
4import a21;
5
6template GoodMixin()
7{
8 int goodFunc()
9 {
10 printf("goodFunc\n");
11 return 1;
12 }
13}
14
15
16class SomeClass
17{
18 mixin GoodMixin;
19 mixin BadMixin;
20}
21