re PR middle-end/71387 (ICE in emit_move_insn, at expr.c:3418 with -Og)
[platform/upstream/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 }