@@ -216,8 +216,8 @@ fn structurally_resolved_type(&@fn_ctxt fcx, &span sp, ty::t typ) -> ty::t {
216
216
case ( fix_ok( ?typ_s) ) { ret typ_s; }
217
217
case ( fix_err( _) ) {
218
218
fcx. ccx. tcx. sess. span_fatal( sp,
219
- "the type of this value must be " +
220
- " known in this context") ;
219
+ "the type of this value must be \
220
+ known in this context") ;
221
221
}
222
222
}
223
223
}
@@ -247,9 +247,9 @@ fn ast_ty_to_ty(&ty::ctxt tcx, &ty_getter getter, &@ast::ty ast_ty) -> ty::t {
247
247
case ( some[ option:: t[ ty:: t] ] ( some[ ty:: t] ( ?ty) ) ) { ret ty; }
248
248
case ( some[ option:: t[ ty:: t] ] ( none) ) {
249
249
tcx. sess. span_fatal( ast_ty. span,
250
- "illegal recursive type " +
251
- " ( insert a tag in the cycle, " +
252
- " if this is desired) ") ;
250
+ "illegal recursive type \
251
+ insert a tag in the cycle, \
252
+ if this is desired) ") ;
253
253
}
254
254
case ( none[ option:: t[ ty:: t] ] ) { }
255
255
} /* go on */
@@ -280,8 +280,8 @@ fn ast_ty_to_ty(&ty::ctxt tcx, &ty_getter getter, &@ast::ty ast_ty) -> ty::t {
280
280
if ( ivec:: len( param_bindings) !=
281
281
ty:: count_ty_params( tcx, params_opt_and_ty. _1) ) {
282
282
tcx. sess. span_fatal( sp,
283
- "Wrong number of type arguments for a" +
284
- " polymorphic tag") ;
283
+ "Wrong number of type arguments for a \
284
+ polymorphic tag") ;
285
285
}
286
286
auto typ =
287
287
ty:: substitute_type_params( tcx, param_bindings,
0 commit comments