blob: b19366d240fc7fca4388d8ef66b0f17922a15a18 [file] [log] [blame]
// 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;
}