From e61e59f739d889549993afdd743cbaf71a95c45e Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Sat, 23 May 2015 16:48:15 +0200 Subject: Add some run tests related to value classes --- tests/run/t7019.scala | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/run/t7019.scala (limited to 'tests/run/t7019.scala') diff --git a/tests/run/t7019.scala b/tests/run/t7019.scala new file mode 100644 index 000000000..5dcc09d2b --- /dev/null +++ b/tests/run/t7019.scala @@ -0,0 +1,10 @@ +final class Foo(val i: Int) extends AnyVal { + def foo() = go(i) + private[this] def go(i: Int) = i * 2 +} + +object Test { + def main(args: Array[String]): Unit = { + assert(new Foo(1).foo() == 2) + } +} -- cgit v1.2.3