ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gdc.test/runnable/test31.d

19 lines
243 B
D
Raw Normal View History

2024-04-01 15:19:46 +00:00
// 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;
}