1 // Copyright (C) 2006 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 1 Sep 2006 <nathan@codesourcery.com>
4 // PR 23287: Failure to parse dependent dtor name
5 // Origin:Wolfgang Bangerth <bangerth@dealii.org>
8 template <class T> struct A {};
10 template <class T> void f(A<T> *ptr) {
14 template void f<void> (A<void> *);