1 // PR c++/49458
2 // { dg-do compile { target c++11 } }
3 
4 typedef void ftype();
5 
6 struct A {
7   operator ftype&(void);
8 };
9 
10 ftype &&frvref = A();
11