Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi-template2.C
blob: fcb405c157623776985a56efea737bb308317858 [
file
] [
log
] [
blame
]
// PR c++/50614
// { dg-do compile { target c++11 } }
// { dg-options "-fcompare-debug" }
struct
A
{
int
f
();
};
template
<int>
struct
B
:
A
{
int
i
=
this
->
f
();
};
B
<
0
>
b
;