summaryrefslogtreecommitdiff
path: root/test/files/pos/t8046.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-12-08 09:16:30 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-12-09 15:47:23 +0100
commitedc9edb79bcc9cb4581037ae0e8fb8907739bef6 (patch)
treeb8f41b134bd52bd9aeef0bbc18de9f4bc49b6f27 /test/files/pos/t8046.scala
parent75cc6cf256df9e152eaec771121ce0db9f7039f8 (diff)
downloadscala-edc9edb79bcc9cb4581037ae0e8fb8907739bef6.tar.gz
scala-edc9edb79bcc9cb4581037ae0e8fb8907739bef6.tar.bz2
scala-edc9edb79bcc9cb4581037ae0e8fb8907739bef6.zip
SI-8046 Fix baseTypeSeq in presence of type aliases
Diffstat (limited to 'test/files/pos/t8046.scala')
-rw-r--r--test/files/pos/t8046.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/files/pos/t8046.scala b/test/files/pos/t8046.scala
new file mode 100644
index 0000000000..304d70b6b8
--- /dev/null
+++ b/test/files/pos/t8046.scala
@@ -0,0 +1,20 @@
+trait One {
+ type Op[A]
+ type Alias[A] = Op[A]
+}
+
+trait Two extends One {
+ trait Op[A] extends (A => A)
+
+ // This compiles
+ class View1 extends Op[Int] { def apply(xs: Int) = xs }
+
+ // ??? base class View2 not found in basetypes of class View2
+ // ./a.scala:9: error: class View2 needs to be abstract, since \
+ // method apply in trait Function1 of type (v1: T1)R is not defined
+ // (Note that T1 does not match Int)
+ // class View2 extends Alias[Int] { def apply(xs: Int) = xs }
+ // ^
+ // one error found
+ class View2 extends Alias[Int] { def apply(xs: Int) = xs }
+}