aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t3498-new.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t3498-new.scala')
-rw-r--r--tests/pending/pos/t3498-new.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/pending/pos/t3498-new.scala b/tests/pending/pos/t3498-new.scala
new file mode 100644
index 000000000..ccf2af9de
--- /dev/null
+++ b/tests/pending/pos/t3498-new.scala
@@ -0,0 +1,17 @@
+import scala.reflect.{ClassTag, classTag}
+
+abstract class A[T, @specialized(scala.Int) U : ClassTag] {
+ def f(state: T): Array[U]
+}
+
+abstract class B extends A[ Array[Byte], Int ] {
+ type T = Array[Byte]
+ type U = Int
+
+ val N = 0
+
+ def f(state: T): Array[U] =
+ {
+ new Array[U](N + state(N))
+ }
+}