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 @@ -100,7 +100,7 @@ pub trait Interner:
100
100
type ParamTy : Copy + Debug + Hash + Eq + ParamLike ;
101
101
type BoundTy : Copy + Debug + Hash + Eq + BoundVarLike < Self > ;
102
102
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 > ;
104
104
105
105
// Things stored inside of tys
106
106
type ErrorGuaranteed : Copy + Debug + Hash + Eq ;
You can’t perform that action at this time.
0 commit comments