repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inline-ns1.C
blob
69813b6ed323122fca75f7666954b5e90be9844b
1
// { dg-do compile { target c++11 } }
2
// { dg-final { scan-assembler "_ZN1Q2V11fEv" } }
3
// { dg-final { scan-assembler "_ZN1Q2V11iE" } }
4
5
namespace Q {
6
inline namespace V1 {
7
extern int i;
8
void f();
9
}
10
}
11
int Q::i = 1;
12
void Q::f() { }