Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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'" }
};