]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/inline-ns3.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / inline-ns3.C
1 // { dg-do compile { target c++11 } }
2
3 namespace C
4 {
5 void f();
6 }
7
8 namespace B
9 {
10 using namespace C;
11
12 inline namespace B1
13 {
14 void f();
15 }
16 }
17
18 namespace A
19 {
20 using namespace B;
21 }
22
23 int main()
24 {
25 A::f();
26 }
This page took 0.03609 seconds and 5 git commands to generate.