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/t6337a.scala | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/pending/run/t6337a.scala (limited to 'tests/pending/run/t6337a.scala') diff --git a/tests/pending/run/t6337a.scala b/tests/pending/run/t6337a.scala new file mode 100644 index 000000000..f5490f5cf --- /dev/null +++ b/tests/pending/run/t6337a.scala @@ -0,0 +1,16 @@ +object Test { + def main(args: Array[String]) { + val x = X(XX(3)) + assert(x.q.x.x + 9 == 13) + } +} +trait Q extends Any { + def x: Int + def inc: XX +} +case class X(val x: Q) extends AnyVal { + def q = X(x.inc) +} +case class XX(val x: Int) extends AnyVal with Q { + def inc = XX(x + 1) +} -- cgit v1.2.3