Add execution tests of ARM EXT intrinsics
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-func2.C
blobcfa0b2149bd35b99eab798615b0e635006d3e5d7
1 // PR c++/49458
2 // { dg-do compile { target c++11 } }
4 typedef void ftype();
6 struct A {
7   operator ftype&(void);
8 };
10 ftype &&frvref = A();