2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / trailing6.C
blob0238740496eab862030678dccb60f9f36c871f21
1 // PR c++/49003
2 // { dg-do compile { target c++11 } }
4 struct A {
5     auto a() const -> decltype(this) { return this; }
6 };