aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t7436.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t7436.scala')
-rw-r--r--tests/pending/run/t7436.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/pending/run/t7436.scala b/tests/pending/run/t7436.scala
deleted file mode 100644
index 9627e38f5..000000000
--- a/tests/pending/run/t7436.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-class A(val p: Int*)
-
-class B(val p1: Int) extends A(p1)
-
-object Test {
- def main(args: Array[String]): Unit = {
- new B(1).p1 // threw java.lang.ClassCastException: scala.collection.mutable.WrappedArray$ofInt cannot be cast to java.lang.Integer
- }
-}