OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / rv-func2.C
1 // PR c++/49458
2 // { dg-options -std=c++0x }
3
4 typedef void ftype();
5
6 struct A {
7   operator ftype&(void);
8 };
9
10 ftype &&frvref = A();