http://gcc.gnu.org/ml/gcc-patches/2008-02/msg00110.html
[official-gcc.git] / gcc / testsuite / g++.dg / parse / template11.C
blobe651a3bd076ca766b8b54da001d5c6b18ae30487
1 // PR c++/9488
2 // Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
3 // { dg-do compile }
5 struct A
7     template <typename> void foo() {}
8 };
10 template <typename T> struct B
12     void bar() { A().foo<T>(); }
15 template struct B<int>;