Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
imports
/
a21a.d
blob: 6ffbecfea8ea2c225d0507fcd03794e37a418b85 [
file
] [
log
] [
blame
]
module
imports
.
a21a
;
import
core
.
stdc
.
stdio
;
import
a21
;
template
GoodMixin
()
{
int
goodFunc
()
{
printf
(
"goodFunc\n"
);
return
1
;
}
}
class
SomeClass
{
mixin
GoodMixin
;
mixin
BadMixin
;
}