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.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/files/pos/spec-constr-new.scala b/test/files/pos/spec-constr-new.scala
index 7cd02b0680..a117e99fef 100644
--- a/test/files/pos/spec-constr-new.scala
+++ b/test/files/pos/spec-constr-new.scala
@@ -1,7 +1,9 @@
+import scala.reflect.{ArrayTag, arrayTag}
+
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;
-}
+} \ No newline at end of file