]> gcc.gnu.org Git - gcc.git/blame - 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
CommitLineData
4b2e63de 1// { dg-do compile { target c++11 } }
bc2c4cb4 2
160594b0
JM
3namespace C
4{
5 void f();
6}
7
8namespace B
9{
10 using namespace C;
11
12 inline namespace B1
13 {
14 void f();
15 }
16}
17
18namespace A
19{
20 using namespace B;
21}
22
23int main()
24{
25 A::f();
26}
This page took 6.362511 seconds and 5 git commands to generate.