aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t5608.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2015-05-23 16:48:15 +0200
committerGuillaume Martres <smarter@ubuntu.com>2015-05-23 18:55:40 +0200
commite61e59f739d889549993afdd743cbaf71a95c45e (patch)
tree8b390944a546f0c29de4076a028dd8a6c76bedc7 /tests/run/t5608.scala
parent942c41b1bdc6db60d530eee70d9dba68acfb54e6 (diff)
downloaddotty-e61e59f739d889549993afdd743cbaf71a95c45e.tar.gz
dotty-e61e59f739d889549993afdd743cbaf71a95c45e.tar.bz2
dotty-e61e59f739d889549993afdd743cbaf71a95c45e.zip
Add some run tests related to value classes
Diffstat (limited to 'tests/run/t5608.scala')
-rw-r--r--tests/run/t5608.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run/t5608.scala b/tests/run/t5608.scala
new file mode 100644
index 000000000..43e912122
--- /dev/null
+++ b/tests/run/t5608.scala
@@ -0,0 +1,12 @@
+object Test {
+ def main(args:Array[String]): Unit = {
+ val ns = Array(3L, 3L, 3L)
+ val a1: A = new A(ns(0))
+ val a2: A = new A(ns(0))
+ println(a1 + a2)
+ }
+}
+
+class A(val u: Long) extends AnyVal {
+ def +(other: A) = new A(other.u + u)
+}