Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
this2.C
blob: ccc2608feb2711f62af349130a0a7d11aed21cf8 [
file
] [
log
] [
blame
]
// PR c++/88548
// { dg-do compile { target c++11 } }
struct
S
{
int
a
;
template
<class>
static
auto
m1
()
->
decltype
(
this
->
a
)
{
return
0
;
}
// { dg-error "'this'" }
};