Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-protected.C
blob: 5d121634a602750b3cb320b5aa23a22783355c09 [
file
] [
log
] [
blame
]
// PR c++/54325
// { dg-do compile { target c++11 } }
class
base
{
protected
:
base
()
{}
};
class
derived
:
public
base
{
public
:
derived
()
:
base
{}
// <-- Note the c++11 curly brace syntax
{}
};
int
main
()
{
derived d1
;
return
0
;
}