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
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-base3.C
blob
9febac304e196074907244db4c2f5f73484a4adf
1
// PR c++/71774
2
// { dg-do compile { target c++11 } }
3
4
class Meow
5
{
6
protected:
7
Meow() =default;
8
virtual void f() {}
9
};
10
11
class Purr : public Meow
12
{
13
public:
14
Purr()
15
: Meow{}
16
{}
17
};