summaryrefslogtreecommitdiff
path: root/test/files/pos/t3568.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3568.scala')
-rw-r--r--test/files/pos/t3568.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t3568.scala b/test/files/pos/t3568.scala
index c8e3fcc4be..0f26e2fad3 100644
--- a/test/files/pos/t3568.scala
+++ b/test/files/pos/t3568.scala
@@ -14,7 +14,7 @@ package buffer {
// ArrayVec2 can be compiled, instantiated and used.
def main(args: Array[String]) { println(works) }
}
-
+
trait ElemType { type Element; type Component <: ElemType }
trait Float1 extends ElemType { type Element = Float; type Component = Float1}
class Vec2 extends ElemType { type Element = Vec2; type Component = Float1 }