blob: 3045534eaa6a1b94bac2da53db19ab0ee5fa008c [file] [log] [blame]
// PR c++/53599
template <typename T>
int foo ()
{
struct F;
struct G
{
static int F::* bar();
};
return sizeof(G);
}
int z = foo <int> ();