blob: 69813b6ed323122fca75f7666954b5e90be9844b [file] [log] [blame]
// { dg-do compile { target c++11 } }
// { dg-final { scan-assembler "_ZN1Q2V11fEv" } }
// { dg-final { scan-assembler "_ZN1Q2V11iE" } }
namespace Q {
inline namespace V1 {
extern int i;
void f();
}
}
int Q::i = 1;
void Q::f() { }