OSDN Git Service

PR c++/51459
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / trailing6.C
1 // PR c++/49003
2 // { dg-options -std=c++0x }
3
4 struct A {
5     auto a() const -> decltype(this) { return this; }
6 };