blob: fcfd265d0d2066b51f17a216b7f0c1dfd80bfbb5 [file] [log] [blame]
// PR c++/56701
// { dg-do compile { target c++11 } }
struct A
{
void f(){ A*&& a = &*this; }
};
int main(){}