2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / nontype1.C
blob834a36a26a0471b179d671eb1c856235371d99da
1 // PR c++/4934
2 // dump_expr didn't know how to deal with a CONVERT_EXPR with no type.
4 template<unsigned>   struct A {};
5 template<typename T> struct B { A<sizeof(+int())> a; };