OSDN Git Service

add c++/43145 tag to changelog and testcase
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lookup / linkage2.C
1 // PR c++/27227
2
3 namespace x {
4   extern "C" const int y;
5 }
6 using x::y;
7 extern "C" int const y=0;