@@ -12,7 +12,7 @@ use crate::astconv::errors::prohibit_assoc_ty_binding;
12
12
use crate :: astconv:: generics:: { check_generic_arg_count, create_args_for_parent_generic_args} ;
13
13
use crate :: bounds:: Bounds ;
14
14
use crate :: collect:: HirPlaceholderCollector ;
15
- use crate :: errors:: { AmbiguousLifetimeBound , TypeofReservedKeywordUsed } ;
15
+ use crate :: errors:: AmbiguousLifetimeBound ;
16
16
use crate :: middle:: resolve_bound_vars as rbv;
17
17
use crate :: require_c_abi_if_c_variadic;
18
18
use rustc_ast:: TraitObjectSyntax ;
@@ -25,13 +25,13 @@ use rustc_hir as hir;
25
25
use rustc_hir:: def:: { CtorOf , DefKind , Namespace , Res } ;
26
26
use rustc_hir:: def_id:: { DefId , LocalDefId } ;
27
27
use rustc_hir:: intravisit:: { walk_generics, Visitor as _} ;
28
- use rustc_hir:: { GenericArg , GenericArgs , OpaqueTyOrigin } ;
28
+ use rustc_hir:: { GenericArg , GenericArgs } ;
29
29
use rustc_infer:: infer:: { InferCtxt , TyCtxtInferExt } ;
30
30
use rustc_infer:: traits:: ObligationCause ;
31
31
use rustc_middle:: middle:: stability:: AllowUnstable ;
32
32
use rustc_middle:: ty:: {
33
- self , Const , GenericArgKind , GenericArgsRef , GenericParamDefKind , IsSuggestable , ParamEnv , Ty ,
34
- TyCtxt , TypeVisitableExt ,
33
+ self , Const , GenericArgKind , GenericArgsRef , GenericParamDefKind , ParamEnv , Ty , TyCtxt ,
34
+ TypeVisitableExt ,
35
35
} ;
36
36
use rustc_session:: lint:: builtin:: AMBIGUOUS_ASSOCIATED_ITEMS ;
37
37
use rustc_span:: edit_distance:: find_best_match_for_name;
@@ -379,7 +379,6 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
379
379
380
380
let mut arg_count = check_generic_arg_count (
381
381
tcx,
382
- span,
383
382
def_id,
384
383
seg,
385
384
generics,
@@ -773,9 +772,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
773
772
speculative,
774
773
& mut dup_bindings,
775
774
binding. span ,
776
- constness,
777
775
only_self_bounds,
778
- polarity,
779
776
) ;
780
777
// Okay to ignore `Err` because of `ErrorGuaranteed` (see above).
781
778
}
@@ -2491,7 +2488,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
2491
2488
let opaque_ty = tcx. hir ( ) . item ( item_id) ;
2492
2489
2493
2490
match opaque_ty. kind {
2494
- hir:: ItemKind :: OpaqueTy ( & hir:: OpaqueTy { origin , .. } ) => {
2491
+ hir:: ItemKind :: OpaqueTy ( & hir:: OpaqueTy { .. } ) => {
2495
2492
let local_def_id = item_id. owner_id . def_id ;
2496
2493
// If this is an RPITIT and we are using the new RPITIT lowering scheme, we
2497
2494
// generate the def_id of an associated type for the trait and return as
@@ -2501,7 +2498,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
2501
2498
} else {
2502
2499
local_def_id. to_def_id ( )
2503
2500
} ;
2504
- self . impl_trait_ty_to_ty ( def_id, lifetimes, origin , in_trait)
2501
+ self . impl_trait_ty_to_ty ( def_id, lifetimes, in_trait)
2505
2502
}
2506
2503
ref i => bug ! ( "`impl Trait` pointed to non-opaque type?? {:#?}" , i) ,
2507
2504
}
@@ -2537,21 +2534,7 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
2537
2534
2538
2535
Ty :: new_array_with_const_len ( tcx, self . ast_ty_to_ty ( ty) , length)
2539
2536
}
2540
- hir:: TyKind :: Typeof ( e) => {
2541
- let ty_erased = tcx. type_of ( e. def_id ) . instantiate_identity ( ) ;
2542
- let ty = tcx. fold_regions ( ty_erased, |r, _| {
2543
- if r. is_erased ( ) { tcx. lifetimes . re_static } else { r }
2544
- } ) ;
2545
- let span = ast_ty. span ;
2546
- let ( ty, opt_sugg) = if let Some ( ty) = ty. make_suggestable ( tcx, false ) {
2547
- ( ty, Some ( ( span, Applicability :: MachineApplicable ) ) )
2548
- } else {
2549
- ( ty, None )
2550
- } ;
2551
- tcx. dcx ( ) . emit_err ( TypeofReservedKeywordUsed { span, ty, opt_sugg } ) ;
2552
-
2553
- ty
2554
- }
2537
+ hir:: TyKind :: Typeof ( e) => tcx. type_of ( e. def_id ) . instantiate_identity ( ) ,
2555
2538
hir:: TyKind :: Infer => {
2556
2539
// Infer also appears as the type of arguments or return
2557
2540
// values in an ExprKind::Closure, or as
@@ -2571,7 +2554,6 @@ impl<'o, 'tcx> dyn AstConv<'tcx> + 'o {
2571
2554
& self ,
2572
2555
def_id : DefId ,
2573
2556
lifetimes : & [ hir:: GenericArg < ' _ > ] ,
2574
- origin : OpaqueTyOrigin ,
2575
2557
in_trait : bool ,
2576
2558
) -> Ty < ' tcx > {
2577
2559
debug ! ( "impl_trait_ty_to_ty(def_id={:?}, lifetimes={:?})" , def_id, lifetimes) ;
0 commit comments