OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typedef10.C
1 // PR c++/34573
2
3 template < class Gtr_>
4 void compute_gr()
5 {
6   typedef int Less_chain;
7   struct utils {
8     utils(const Less_chain& lc)  {};
9   };
10   utils U(1);
11 }
12 int main(void){
13   compute_gr<int>();
14 }