OSDN Git Service

* overload1.C: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.oliva / template8.C
1 // Build don't link:
2
3 // Copyright (C) 1999 Free Software Foundation
4
5 // by Alexandre Oliva <oliva@dcc.unicamp.br>
6 // simplified from bug report by redleaf <e1wwater@dingo.cc.uq.edu.au>
7
8 struct B {
9   template <class> void bar();
10 } b;
11
12 template <class T> void foo() {
13   b.bar<T>(); // no longer gets bogus error - bar undeclared
14   b.template bar<T>(); // no longer gets bogus error - ditto
15   b.B::bar<T>(); // ok
16 }
17
18 template void foo<void>(); // no longer gets bogus error