repo.or.cz
/
official-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.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
inh-ctor28.C
blob
55e1d8c943f976f60eca8fe95e00468dff452ae5
1
// { dg-do compile { target c++11 } }
2
// { dg-options -fnew-inheriting-ctors }
3
4
struct V { V(int); };
5
struct W : virtual V { using V::V; };
6
struct X : virtual W, virtual V { using W::W; };
7
X x(0);