* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / inline-ns1.C
blob69813b6ed323122fca75f7666954b5e90be9844b
1 // { dg-do compile { target c++11 } }
2 // { dg-final { scan-assembler "_ZN1Q2V11fEv" } }
3 // { dg-final { scan-assembler "_ZN1Q2V11iE" } }
5 namespace Q {
6   inline namespace V1 {
7     extern int i;
8     void f();
9   }
11 int Q::i = 1;
12 void Q::f() { }