aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/SI-4012-b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/SI-4012-b.scala')
-rw-r--r--tests/untried/pos/SI-4012-b.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/untried/pos/SI-4012-b.scala b/tests/untried/pos/SI-4012-b.scala
new file mode 100644
index 000000000..6bc859276
--- /dev/null
+++ b/tests/untried/pos/SI-4012-b.scala
@@ -0,0 +1,15 @@
+trait Super[@specialized(Int) A] {
+ def superb = 0
+}
+
+object Sub extends Super[Int] {
+ // it is expected that super[Super].superb crashes, since
+ // specialization does parent class rewiring, and the super
+ // of Sub becomes Super$mcII$sp and not Super. But I consider
+ // this normal behavior -- if you want, I can modify duplicatiors
+ // to make this work, but I consider it's best to keep this
+ // let the user know Super is not the superclass anymore.
+ // super[Super].superb - Vlad
+ super.superb // okay
+ override def superb: Int = super.superb // okay
+}