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
libstdc++: Improve comment for _Hashtable::_M_insert_unique_node
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
inh-ctor27.C
blob
97f26346b78a80ac157e9d6cdbd31a53698b7a32
1
// { dg-do compile { target c++11 } }
2
3
struct A
4
{
5
A(int = 0);
6
};
7
8
struct B: A
9
{
10
B();
11
using A::A;
12
};
13
14
B b1(1);
15
B b;