summaryrefslogtreecommitdiff
path: root/test/files/pos/SI-4012-b.scala
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@gmail.com>2013-09-02 19:08:49 +0200
committerVlad Ureche <vlad.ureche@gmail.com>2013-11-05 17:30:36 +0100
commite09a8a2b7f821be43703bd5bf3a064e171d8f66c (patch)
tree905b8519217b9318fce03b323a40094dfbb04c58 /test/files/pos/SI-4012-b.scala
parent05681d4def04f290728e673b7856a57b872c8019 (diff)
downloadscala-e09a8a2b7f821be43703bd5bf3a064e171d8f66c.tar.gz
scala-e09a8a2b7f821be43703bd5bf3a064e171d8f66c.tar.bz2
scala-e09a8a2b7f821be43703bd5bf3a064e171d8f66c.zip
SI-4012 Mixin and specialization work well
The bug was fixed along with SI-7638 in 504b5f3.
Diffstat (limited to 'test/files/pos/SI-4012-b.scala')
-rw-r--r--test/files/pos/SI-4012-b.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/files/pos/SI-4012-b.scala b/test/files/pos/SI-4012-b.scala
new file mode 100644
index 0000000000..6bc8592766
--- /dev/null
+++ b/test/files/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
+}