blob: ba37f103e94376a08570ad91daff177c70ad1f88 [file] [log] [blame]
// { dg-do assemble }
// PRMS id: 4653
// Bug: g++ tries to resolve declarator/expression ambiguities too soon.
template<class T> struct A { };
void f () {
void (A<int>::*pmf) (); // { dg-bogus "" } late binding
}