PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / ref-qual17.C
blob45ed2a169f0ca94ff9ba97b8d28c486b65189cd7
1 // { dg-do compile { target c++11 } }
3 struct A
5   void foo () &;
6 };
8 void
9 bar (__UINTPTR_TYPE__ a)
11   reinterpret_cast<A *>(a)->foo ();