3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 24 Mar 2003 <nathan@codesourcery.com>
6 // PR 10119 (part). We failed to tsubst the args of a template-id-expr
8 template <class T, void (T::* const U)()> struct Good
10 static int const value = 0;
15 template <typename U> void good ()
17 int s_id = Good<A, &A::good<U> >::value;