]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/test15578.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test15578.d
1 __gshared private:
2 int j;
3 extern(C++, ns) int k;
4
5 void f()
6 {
7 j = 0; // works as expected
8 k = 0; // Error: variable foo.ns.k is private
9 }
10