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, 0 insertions, 17 deletions
diff --git a/tests/pending/pos/t3498-new.scala b/tests/pending/pos/t3498-new.scala
deleted file mode 100644
index ccf2af9de..000000000
--- a/tests/pending/pos/t3498-new.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-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))
- }
-}