File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
rustc_middle/src/ty/print Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3251,7 +3251,7 @@ define_print! {
32513251 ty:: ClauseKind :: ConstEvaluatable ( ct) => {
32523252 p!( "the constant `" , print( ct) , "` can be evaluated" )
32533253 }
3254- ty:: ClauseKind :: UnstableFeature ( _) => p!( "unstable impl " ) , // TODO: fix this later
3254+ ty:: ClauseKind :: UnstableFeature ( _) => p!( "unstable feature " ) , // TODO: fix this later
32553255 }
32563256 }
32573257
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ pub trait Interner:
100100 type ParamTy : Copy + Debug + Hash + Eq + ParamLike ;
101101 type BoundTy : Copy + Debug + Hash + Eq + BoundVarLike < Self > ;
102102 type PlaceholderTy : PlaceholderLike ;
103- type Symbol : Copy + Hash + PartialEq + Eq + TypeFoldable < Self > + TypeVisitable < Self > ; // TODO: add more trait if we need it, keep it minimal for now.
103+ type Symbol : Copy + Hash + PartialEq + Eq + TypeFoldable < Self > + TypeVisitable < Self > ;
104104
105105 // Things stored inside of tys
106106 type ErrorGuaranteed : Copy + Debug + Hash + Eq ;
You can’t perform that action at this time.
0 commit comments