OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / nontype1.C
1 // PR c++/4934
2 // dump_expr didn't know how to deal with a CONVERT_EXPR with no type.
3
4 template<unsigned>   struct A {};
5 template<typename T> struct B { A<sizeof(+int())> a; };