@@ -572,8 +572,8 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
572
572
let b = & trait_bounds[ 0 ] ;
573
573
let span = b. trait_ref . path . span ;
574
574
struct_span_err ! ( self . tcx( ) . sess, span, E0225 ,
575
- "only Send/Sync traits can be used as additional traits in a trait object" )
576
- . span_label ( span, "non-Send/Sync additional trait" )
575
+ "only auto traits can be used as additional traits in a trait object" )
576
+ . span_label ( span, "non-auto additional trait" )
577
577
. emit ( ) ;
578
578
}
579
579
@@ -1257,27 +1257,10 @@ fn split_auto_traits<'a, 'b, 'gcx, 'tcx>(tcx: TyCtxt<'a, 'gcx, 'tcx>,
1257
1257
-> ( Vec < DefId > , Vec < & ' b hir:: PolyTraitRef > )
1258
1258
{
1259
1259
let ( auto_traits, trait_bounds) : ( Vec < _ > , _ ) = trait_bounds. iter ( ) . partition ( |bound| {
1260
+ // Checks whether `trait_did` is an auto trait and adds it to `auto_traits` if so.
1260
1261
match bound. trait_ref . path . def {
1261
- Def :: Trait ( trait_did) => {
1262
- // Checks whether `trait_did` refers to one of the builtin
1263
- // traits, like `Send`, and adds it to `auto_traits` if so.
1264
- if Some ( trait_did) == tcx. lang_items ( ) . send_trait ( ) ||
1265
- Some ( trait_did) == tcx. lang_items ( ) . sync_trait ( ) {
1266
- let segments = & bound. trait_ref . path . segments ;
1267
- segments[ segments. len ( ) - 1 ] . with_parameters ( |parameters| {
1268
- if !parameters. types . is_empty ( ) {
1269
- check_type_argument_count ( tcx, bound. trait_ref . path . span ,
1270
- parameters. types . len ( ) , & [ ] ) ;
1271
- }
1272
- if !parameters. lifetimes . is_empty ( ) {
1273
- report_lifetime_number_error ( tcx, bound. trait_ref . path . span ,
1274
- parameters. lifetimes . len ( ) , 0 ) ;
1275
- }
1276
- } ) ;
1277
- true
1278
- } else {
1279
- false
1280
- }
1262
+ Def :: Trait ( trait_did) if tcx. trait_is_auto ( trait_did) => {
1263
+ true
1281
1264
}
1282
1265
_ => false
1283
1266
}
0 commit comments