1// PR c++/4934
2// dump_expr didn't know how to deal with a CONVERT_EXPR with no type.
3
4template<unsigned>   struct A {};
5template<typename T> struct B { A<sizeof(+int())> a; };
6