OSDN Git Service

* pt.c (check_explicit_specialization): Add visibility logic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.oliva / template8.C
1 // { dg-do assemble  }
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 { dg-bogus "" } bar undeclared
14   b.template bar<T>(); // no longer { dg-bogus "" } ditto
15   b.B::bar<T>(); // ok
16 }
17
18 template void foo<void>(); // no longer { dg-bogus "" }