@@ -1112,6 +1112,7 @@ where
1112
1112
/// * For an opaque type, there is no explicit syntax.
1113
1113
#[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Hash , TyEncodable , TyDecodable ) ]
1114
1114
#[ derive( HashStable , TypeFoldable , TypeVisitable , Lift ) ]
1115
+ #[ non_exhaustive]
1115
1116
pub struct AliasTy < ' tcx > {
1116
1117
/// The parameters of the associated or opaque item.
1117
1118
///
@@ -1136,10 +1137,6 @@ pub struct AliasTy<'tcx> {
1136
1137
/// `TraitRef` containing this associated type, which is in `tcx.associated_item(def_id).container`,
1137
1138
/// aka. `tcx.parent(def_id)`.
1138
1139
pub def_id : DefId ,
1139
-
1140
- /// This field exists to prevent the creation of `AliasTy` without using
1141
- /// [AliasTy::new].
1142
- _use_alias_ty_new_instead : ( ) ,
1143
1140
}
1144
1141
1145
1142
impl < ' tcx > AliasTy < ' tcx > {
@@ -1149,7 +1146,7 @@ impl<'tcx> AliasTy<'tcx> {
1149
1146
args : impl IntoIterator < Item : Into < GenericArg < ' tcx > > > ,
1150
1147
) -> ty:: AliasTy < ' tcx > {
1151
1148
let args = tcx. check_and_mk_args ( def_id, args) ;
1152
- ty:: AliasTy { def_id, args, _use_alias_ty_new_instead : ( ) }
1149
+ ty:: AliasTy { def_id, args }
1153
1150
}
1154
1151
1155
1152
pub fn kind ( self , tcx : TyCtxt < ' tcx > ) -> ty:: AliasKind {
0 commit comments