Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / spec18.C
blobaec979a8115d13e85f5e3e8f2a73a02e8d634b8e
1 // { dg-do assemble  }
3 template<class A, class B>
4 void foo(const A& a, const B& b)
8 template<class A, class B>
9 void foo(const A& a, const int& b)
13 template<class A*, class B>
14 void foo(const A*& a, const B& b)
18 template<>
19 void foo(const int&, const double&)
24 int
25 main()
27   foo("98239", 23);
28   foo(232, 1.022);