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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
inh-ctor35.C
blob
0ec4393884897f6a8e97ff8e4a1012b1d5c5cf27
1
// PR c++/92590
2
// { dg-do compile { target c++11 } }
3
4
class Base {
5
protected:
6
Base();
7
};
8
9
class Derived : public Base {
10
public:
11
using Base::Base;
12
};
13
14
Derived d;