aboutsummaryrefslogtreecommitdiff
path: root/compiler/test/dotty/tools/DottyTypeStealer.scala
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/test/dotty/tools/DottyTypeStealer.scala')
-rw-r--r--compiler/test/dotty/tools/DottyTypeStealer.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/test/dotty/tools/DottyTypeStealer.scala b/compiler/test/dotty/tools/DottyTypeStealer.scala
index ff6e67e41..727cd9e7d 100644
--- a/compiler/test/dotty/tools/DottyTypeStealer.scala
+++ b/compiler/test/dotty/tools/DottyTypeStealer.scala
@@ -19,7 +19,7 @@ object DottyTypeStealer extends DottyTest {
implicit val ctx = context
val findValDef: (List[ValDef], tpd.Tree) => List[ValDef] =
(acc , tree) => { tree match {
- case t: ValDef if t.name.startsWith(dummyName.toTermName) => t :: acc
+ case t: ValDef if t.name.startsWith(dummyName) => t :: acc
case _ => acc
}
}