summaryrefslogtreecommitdiff
path: root/test/files/jvm
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2016-05-11 12:22:32 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2016-05-11 12:22:32 +0200
commitb3f8332cf399cd15067c879c8297c25598045883 (patch)
tree094af79fddb1e6a53ebee6d843a5fd877789a53f /test/files/jvm
parentd06ce96a515ce3e4cdb724d30993ae45787716c6 (diff)
parent86ae2f95ce33ef22f9c9ad40d6a966fbef7d352f (diff)
downloadscala-b3f8332cf399cd15067c879c8297c25598045883.tar.gz
scala-b3f8332cf399cd15067c879c8297c25598045883.tar.bz2
scala-b3f8332cf399cd15067c879c8297c25598045883.zip
Merge pull request #5090 from som-snytt/issue/9740-repl-bad-import
SI-9740 Repl import fix -Yrepl-class-based
Diffstat (limited to 'test/files/jvm')
-rw-r--r--test/files/jvm/interpreter.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/jvm/interpreter.check b/test/files/jvm/interpreter.check
index ce3c8062d7..9a2162a906 100644
--- a/test/files/jvm/interpreter.check
+++ b/test/files/jvm/interpreter.check
@@ -353,7 +353,7 @@ defined class Term
scala> def f(e: Exp) = e match { // non-exhaustive warning here
case _:Fact => 3
}
-<console>:22: warning: match may not be exhaustive.
+<console>:18: warning: match may not be exhaustive.
It would fail on the following inputs: Exp(), Term()
def f(e: Exp) = e match { // non-exhaustive warning here
^