summaryrefslogtreecommitdiff
path: root/test/files/pos/spec-constr-new.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/spec-constr-new.scala')
-rw-r--r--test/files/pos/spec-constr-new.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/spec-constr-new.scala b/test/files/pos/spec-constr-new.scala
new file mode 100644
index 0000000000..7cd02b0680
--- /dev/null
+++ b/test/files/pos/spec-constr-new.scala
@@ -0,0 +1,7 @@
+class SparseArray2[@specialized(Int) T:ArrayTag](val maxSize: Int, initialLength:Int = 3) {
+ private var data = new Array[T](initialLength);
+ private var index = new Array[Int](initialLength);
+
+ // comment out to compile correctly
+ data.length + 3;
+}