blob: ba37f103e94376a08570ad91daff177c70ad1f88 (
plain)
1
2
3
4
5
6
7
8
9
|
// { 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
}
|