2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / explicit3.C
blob49d0689a5152c04ed42909f6d7f235a95d7beada
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 27 Jul 2003 <nathan@codesourcery.com>
6 // Failed to spot specialization using a template-id expr
8 template <int n> class A {};
9 template <int m> class R {};
11 template <int n, int x> struct Trait { enum {m = n}; };
13 template <int n, int x> R<Trait<n,x>::m> f(A<x>);
14 template <> R<Trait<1,1>::m> f<1>(A<1>) {return R<1>();}
16 void Baz ()
18   R<Trait<1,1>::m> (*ptr) (A<1>);
20   ptr = &f<1>;
21