aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.oliva/template8.C
blob: 86c4d0c691ddefd6a1f6c99da627abe00274a228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// { dg-do assemble  }

// Copyright (C) 1999 Free Software Foundation

// by Alexandre Oliva <oliva@dcc.unicamp.br>
// simplified from bug report by redleaf <e1wwater@dingo.cc.uq.edu.au>

struct B {
  template <class> void bar();
} b;

template <class T> void foo() {
  b.bar<T>(); // no longer { dg-bogus "" } bar undeclared
  b.template bar<T>(); // no longer { dg-bogus "" } ditto
  b.B::bar<T>(); // ok
}

template void foo<void>(); // no longer { dg-bogus "" }