@@ -55,8 +55,8 @@ use rustc_errors::{DiagArgFromDisplay, DiagCtxtHandle, StashKey};
55
55
use rustc_hir:: def:: { DefKind , LifetimeRes , Namespace , PartialRes , PerNS , Res } ;
56
56
use rustc_hir:: def_id:: { LocalDefId , LocalDefIdMap , CRATE_DEF_ID , LOCAL_CRATE } ;
57
57
use rustc_hir:: {
58
- self as hir, ConstArg , GenericArg , HirId , ItemLocalMap , MissingLifetimeKind , ParamName ,
59
- TraitCandidate ,
58
+ self as hir, ConstArg , GenericArg , HirId , ItemLocalMap , LangItem , MissingLifetimeKind ,
59
+ ParamName , TraitCandidate ,
60
60
} ;
61
61
use rustc_index:: { Idx , IndexSlice , IndexVec } ;
62
62
use rustc_macros:: extension;
@@ -756,8 +756,13 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
756
756
res
757
757
}
758
758
759
- fn make_lang_item_qpath ( & mut self , lang_item : hir:: LangItem , span : Span ) -> hir:: QPath < ' hir > {
760
- hir:: QPath :: Resolved ( None , self . make_lang_item_path ( lang_item, span, None ) )
759
+ fn make_lang_item_qpath (
760
+ & mut self ,
761
+ lang_item : hir:: LangItem ,
762
+ span : Span ,
763
+ args : Option < & ' hir hir:: GenericArgs < ' hir > > ,
764
+ ) -> hir:: QPath < ' hir > {
765
+ hir:: QPath :: Resolved ( None , self . make_lang_item_path ( lang_item, span, args) )
761
766
}
762
767
763
768
fn make_lang_item_path (
@@ -1300,6 +1305,32 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
1300
1305
let lifetime = self . lower_lifetime ( & region) ;
1301
1306
hir:: TyKind :: Ref ( lifetime, self . lower_mt ( mt, itctx) )
1302
1307
}
1308
+ TyKind :: PinnedRef ( region, mt) => {
1309
+ let region = region. unwrap_or_else ( || {
1310
+ let id = if let Some ( LifetimeRes :: ElidedAnchor { start, end } ) =
1311
+ self . resolver . get_lifetime_res ( t. id )
1312
+ {
1313
+ debug_assert_eq ! ( start. plus( 1 ) , end) ;
1314
+ start
1315
+ } else {
1316
+ self . next_node_id ( )
1317
+ } ;
1318
+ let span = self . tcx . sess . source_map ( ) . start_point ( t. span ) . shrink_to_hi ( ) ;
1319
+ Lifetime { ident : Ident :: new ( kw:: UnderscoreLifetime , span) , id }
1320
+ } ) ;
1321
+ let lifetime = self . lower_lifetime ( & region) ;
1322
+ let kind = hir:: TyKind :: Ref ( lifetime, self . lower_mt ( mt, itctx) ) ;
1323
+ let span = self . lower_span ( t. span ) ;
1324
+ let arg = hir:: Ty { kind, span, hir_id : self . next_id ( ) } ;
1325
+ let args = self . arena . alloc ( hir:: GenericArgs {
1326
+ args : self . arena . alloc ( [ hir:: GenericArg :: Type ( self . arena . alloc ( arg) ) ] ) ,
1327
+ constraints : & [ ] ,
1328
+ parenthesized : hir:: GenericArgsParentheses :: No ,
1329
+ span_ext : span,
1330
+ } ) ;
1331
+ let path = self . make_lang_item_qpath ( LangItem :: Pin , span, Some ( args) ) ;
1332
+ hir:: TyKind :: Path ( path)
1333
+ }
1303
1334
TyKind :: BareFn ( f) => {
1304
1335
let generic_params = self . lower_lifetime_binder ( t. id , & f. generic_params ) ;
1305
1336
hir:: TyKind :: BareFn ( self . arena . alloc ( hir:: BareFnTy {
@@ -1882,10 +1913,14 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
1882
1913
// Given we are only considering `ImplicitSelf` types, we needn't consider
1883
1914
// the case where we have a mutable pattern to a reference as that would
1884
1915
// no longer be an `ImplicitSelf`.
1885
- TyKind :: Ref ( _, mt) if mt. ty . kind . is_implicit_self ( ) => match mt. mutbl {
1886
- hir:: Mutability :: Not => hir:: ImplicitSelfKind :: RefImm ,
1887
- hir:: Mutability :: Mut => hir:: ImplicitSelfKind :: RefMut ,
1888
- } ,
1916
+ TyKind :: Ref ( _, mt) | TyKind :: PinnedRef ( _, mt)
1917
+ if mt. ty . kind . is_implicit_self ( ) =>
1918
+ {
1919
+ match mt. mutbl {
1920
+ hir:: Mutability :: Not => hir:: ImplicitSelfKind :: RefImm ,
1921
+ hir:: Mutability :: Mut => hir:: ImplicitSelfKind :: RefMut ,
1922
+ }
1923
+ }
1889
1924
_ => hir:: ImplicitSelfKind :: None ,
1890
1925
}
1891
1926
} ) ,
0 commit comments