mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
20 lines
212 B
D
20 lines
212 B
D
module imports.a21a;
|
|
|
|
import core.stdc.stdio;
|
|
import a21;
|
|
|
|
template GoodMixin()
|
|
{
|
|
int goodFunc()
|
|
{
|
|
printf("goodFunc\n");
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
|
|
class SomeClass
|
|
{
|
|
mixin GoodMixin;
|
|
mixin BadMixin;
|
|
}
|