aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/trailing6.C
blob: 0238740496eab862030678dccb60f9f36c871f21 (plain)
1
2
3
4
5
6
// PR c++/49003
// { dg-do compile { target c++11 } }

struct A {
    auto a() const -> decltype(this) { return this; }
};