repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
this2.C
blob
ccc2608feb2711f62af349130a0a7d11aed21cf8
1
// PR c++/88548
2
// { dg-do compile { target c++11 } }
3
4
struct S {
5
int a;
6
template <class> static auto m1 ()
7
-> decltype(this->a) { return 0; } // { dg-error "'this'" }
8
};