summaryrefslogtreecommitdiff
path: root/test/files/pos/t7689.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t7689.scala')
-rw-r--r--test/files/pos/t7689.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t7689.scala b/test/files/pos/t7689.scala
index 022e7ab7a0..72cca99bc0 100644
--- a/test/files/pos/t7689.scala
+++ b/test/files/pos/t7689.scala
@@ -2,6 +2,6 @@ object A {
// The default getter must have an explicit return type (List[_] => Int)
// This wasn't happening since e28c3edda4. That commit encoded upper/lower
// bounds of Any/Nothing as EmptyTree, which were triggering an .isEmpty
- // check in Namers#TypeTreeSubstitutor
+ // check in Namers#TypeTreeSubstituter
def x(f: List[_] => Int = _ => 3) = 9
}