OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / ttp18.C
1 template <template <typename> class T>
2 void f(T<int>) {}
3
4 template <typename T>
5 union U {};
6
7 void g() {
8   f(U<int>());
9 }
10