aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Substituters.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/Substituters.scala')
-rw-r--r--src/dotty/tools/dotc/core/Substituters.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Substituters.scala b/src/dotty/tools/dotc/core/Substituters.scala
index f5f60e6a5..8beb6995e 100644
--- a/src/dotty/tools/dotc/core/Substituters.scala
+++ b/src/dotty/tools/dotc/core/Substituters.scala
@@ -240,7 +240,7 @@ trait Substituters { this: Context =>
def apply(tp: Type): Type = subst(tp, from, to, this)
}
- final class SubstDealiasMap(from: List[Symbol], to: List[Type]) extends SubstMap(from, to) {
+ final class SubstDealiasMap(from: List[Symbol], to: List[Type]) extends DeepTypeMap {
override def apply(tp: Type): Type = substDealias(tp, from, to, this)
}