summaryrefslogblamecommitdiff
path: root/test/files/run/t9206.scala
blob: c0484d9217d00b6fed5c39ea99d5a962d3e31004 (plain) (tree)

























                                                                                     
import scala.tools.partest.SessionTest

object Test extends SessionTest {
//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.
        |
        |scala> val i: Int = "foo"
        |<console>:10: 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;
        | found   : String
        | required: Int
        |       { val j = 42 ; val i: Int = "foo" + j }
        |                                         ^
        |
        |scala> :quit"""

}