Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/dotty/tools/dotc/core/Types.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2602,7 +2602,8 @@ object Types {
if ((annot eq this.annot) && (tpe eq this.tpe)) this
else AnnotatedType(annot, tpe)

override def stripTypeVar(implicit ctx: Context): Type = tpe.stripTypeVar
override def stripTypeVar(implicit ctx: Context): Type =
derivedAnnotatedType(annot, tpe.stripTypeVar)
override def stripAnnots(implicit ctx: Context): Type = tpe.stripAnnots
}

Expand Down