dmd/compiler/test/runnable/test31.d
2022-07-09 18:53:07 +02:00

18 lines
244 B
D

// COMPILE_SEPARATELY:
// EXTRA_SOURCES: imports/test31a.d
// PERMUTE_ARGS:
import imports.test31a;
class Foo {
mixin Baz!();
void testfunc() {
privfunc(); // Error: .privfunc is private
}
}
int main()
{
return 0;
}