]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/protection/basic/mod1.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / protection / basic / mod1.d
1 module protection.basic.mod1;
2
3 public void publicFoo() {}
4 package void packageFoo() {}
5 private void privateFoo() {}
6
7 class Test
8 {
9 public void publicFoo();
10 protected void protectedFoo();
11 package void packageFoo();
12 private void privateFoo();
13 }