blob: ea181047306f8d1de41196946292b9db85e4cf4e [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;
}