1 // PR c++/56701
2 // { dg-do compile { target c++11 } }
3 
4 struct A
5 {
fA6   void f(){ A*&& a = &*this; }
7 };
main()8 int main(){}
9