summaryrefslogtreecommitdiff
path: root/test/files/pos/tcpoly_bounds1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/tcpoly_bounds1.scala')
-rw-r--r--test/files/pos/tcpoly_bounds1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/tcpoly_bounds1.scala b/test/files/pos/tcpoly_bounds1.scala
index 5874cc664d..142c0b7b7f 100644
--- a/test/files/pos/tcpoly_bounds1.scala
+++ b/test/files/pos/tcpoly_bounds1.scala
@@ -1,6 +1,6 @@
-class Foo[t[x]<: Pair[Int, x]]
+class Foo[t[x]<: Pair[Int, x]]
-//
+//
class MyPair[z](a: Int, b: z) extends Pair[Int, z](a,b)
object foo extends Foo[MyPair]