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; };
6