aboutsummaryrefslogtreecommitdiff
path: root/tests/run/i2020.scala
blob: 78794a59001ae21dc84c437093e01cda9dfe52e6 (plain) (blame)
1
2
3
4
5
6
7
8
object Test {

  case class Foo(x: Int)(y: Int)

  def main(args: Array[String]) =
    assert(Foo(1)(1) == Foo(1)(2))

}