summaryrefslogtreecommitdiff
path: root/test/files/run/t9206.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t9206.scala')
-rw-r--r--test/files/run/t9206.scala8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/files/run/t9206.scala b/test/files/run/t9206.scala
index 2942d0f73e..406798104e 100644
--- a/test/files/run/t9206.scala
+++ b/test/files/run/t9206.scala
@@ -5,18 +5,16 @@ object Test extends SessionTest {
//override def prompt = "XXX> "
//Welcome to Scala version 2.11.6 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_40).
def session =
- s"""|Type in expressions to have them evaluated.
- |Type :help for more information.
- |
+ s"""|
|scala> val i: Int = "foo"
- |<console>:10: error: type mismatch;
+ |<console>:11: error: type mismatch;
| found : String("foo")
| required: Int
| val i: Int = "foo"
| ^
|
|scala> { val j = 42 ; val i: Int = "foo" + j }
- |<console>:11: error: type mismatch;
+ |<console>:12: error: type mismatch;
| found : String
| required: Int
| { val j = 42 ; val i: Int = "foo" + j }