PR c++/34094
[official-gcc.git] / gcc / testsuite / g++.dg / other / anon5.C
blob68a02880b219960757143a2ec87528550c8a715c
1 // PR c++/34094
2 // { dg-do link }
3 // { dg-options "-g" }
5 namespace {
6   struct c
7   {
8     static const bool t = 0;
9   };
12 const bool &f()
14   return c::t;                  // { dg-error "undefined" }
17 int main(void)
19   return 0;