summaryrefslogtreecommitdiff
path: root/test/files/neg/t3971.scala
blob: 35f64fde0cf87201a9bec6729b8ac58bb5a70664 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class A {
  def f(x: String) = x
  def g(x: String)(y: String): Int = x.length + y.length
  def h(x: String) = x.length

  f(g("abc")("def")) // g returns Int, needs String
  f(5)
  f(h("abc"))

  // a perverse piece of code from a perverse coder
  ({"ab".reverse; "ba".equals})(0): String
}