3 // Copyright (C) 2000 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 11 Aug 2000 <nathan@codesourcery.com>
6 // bug 382. We ICE'd rather than decay to an address.
9 template <class T> static void f(T) {}
11 void (*h)(int) = A::f<int>;
12 void (*i)(int) = &A::f<int>;