summaryrefslogtreecommitdiff
path: root/test/files/neg/type-diagnostics.check
blob: 33e07f3816301d6b33130780df984d03f3dbbec9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type-diagnostics.scala:4: error: type mismatch;
 found   : scala.collection.Set[String]
 required: scala.collection.immutable.Set[String]
  def f = Calculator("Hello",binding.keySet)
                                     ^
type-diagnostics.scala:13: error: type mismatch;
 found   : List[a(in method f2)]
 required: List[a(in method f1)]
      y match { case y1: List[a] => f3(x, y1) }
                                          ^
type-diagnostics.scala:17: error: type mismatch;
 found   : String(in method f2)
 required: java.lang.String
  def f2[String](s: String) = strings(List(s))
                                           ^
three errors found