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 @@ -3250,7 +3250,7 @@ define_print! {
3250
3250
ty:: ClauseKind :: ConstEvaluatable ( ct) => {
3251
3251
p!( "the constant `" , print( ct) , "` can be evaluated" )
3252
3252
}
3253
- ty:: ClauseKind :: UnstableFeature ( _) => p!( "unstable impl " ) , // TODO: fix this later
3253
+ ty:: ClauseKind :: UnstableFeature ( _) => p!( "unstable feature " ) , // TODO: fix this later
3254
3254
}
3255
3255
}
3256
3256
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ pub trait Interner:
103
103
type ParamTy : Copy + Debug + Hash + Eq + ParamLike ;
104
104
type BoundTy : Copy + Debug + Hash + Eq + BoundVarLike < Self > ;
105
105
type PlaceholderTy : PlaceholderLike ;
106
- type Symbol : Copy + Hash + PartialEq + Eq + TypeFoldable < Self > + TypeVisitable < Self > ; // TODO: add more trait if we need it, keep it minimal for now.
106
+ type Symbol : Copy + Hash + PartialEq + Eq + TypeFoldable < Self > + TypeVisitable < Self > ;
107
107
108
108
// Things stored inside of tys
109
109
type ErrorGuaranteed : Copy + Debug + Hash + Eq ;
You can’t perform that action at this time.
0 commit comments