blob: 45ed2a169f0ca94ff9ba97b8d28c486b65189cd7 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct A
{
void foo () &;
};
void
bar (__UINTPTR_TYPE__ a)
{
reinterpret_cast<A *>(a)->foo ();
}