From 89bacb9c25a58454ff1878e67f7ea07ffc8c269f Mon Sep 17 00:00:00 2001 From: Dmitry Petrashko Date: Tue, 12 May 2015 18:30:53 +0200 Subject: Run tests as they were in scala. --- tests/pending/run/t5009.scala | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/pending/run/t5009.scala (limited to 'tests/pending/run/t5009.scala') diff --git a/tests/pending/run/t5009.scala b/tests/pending/run/t5009.scala new file mode 100644 index 000000000..db12c0d68 --- /dev/null +++ b/tests/pending/run/t5009.scala @@ -0,0 +1,14 @@ +object Test extends App { + + case class C[T, U <: String, O >: Object](x: Int, y: T)(z: U, b: Boolean)(s: O, val l: Int) + + val c = C(1, true)("dlkfj", true)("dlkfjlk", 10) + println(c) + println(c.l) + + println(c.copy(y = 20, x = 7283)("enwa", b = false)(l = -1, s = new Object)) + + val res = c.copy[Int, String, Object](y = -3, x = 66)("lkdjen", false)(new Object, 100) + println(res) + println(res.l) +} -- cgit v1.2.3