Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi5.C
blob: bade28f3dcc5b8a16dc6420c08564f3c083c9541 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
struct
X
{
int
x
=
5
;
int
f
()
{
return
x
;
}
};
struct
Y
:
X
{
int
y
=
this
->
x
;
};
template
<
class
T
>
struct
Z
:
T
{
int
y
=
this
->
f
();
};
int
main
()
{
Y foo
;
Z
<
X
>
bar
;
}