summaryrefslogtreecommitdiff
path: root/test/files/pos/arrays3.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/arrays3.scala')
-rw-r--r--test/files/pos/arrays3.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/arrays3.scala b/test/files/pos/arrays3.scala
new file mode 100644
index 0000000000..f96be0b427
--- /dev/null
+++ b/test/files/pos/arrays3.scala
@@ -0,0 +1,11 @@
+trait Foo {
+ type Repr <: String
+ def f2(x: Repr) = x.length
+}
+trait Fooz[Repr <: Array[_]] {
+ def f0(x: Repr) = x.length
+}
+
+trait Bar[Repr <: List[_]] extends Foo with Fooz[Array[Int]] {
+ def f1(x: Repr) = x.length
+}