aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/tcpoly_infer_easy.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/tcpoly_infer_easy.scala')
-rw-r--r--tests/untried/pos/tcpoly_infer_easy.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/untried/pos/tcpoly_infer_easy.scala b/tests/untried/pos/tcpoly_infer_easy.scala
index 0f1929502..bfa369f4a 100644
--- a/tests/untried/pos/tcpoly_infer_easy.scala
+++ b/tests/untried/pos/tcpoly_infer_easy.scala
@@ -1,5 +1,5 @@
object Test {
- def test[CC[+X] <: Iterable[X], A](xs: CC[A]): CC[A] = xs
- val xs = test(List(1,2))
- val xs2: List[Int] = test(List(1,2))
+ def test[CC[+X] <: Iterable[X], A](xs: CC[A]): CC[A] = xs
+ val xs = test(List(1,2))
+ val xs2: List[Int] = test(List(1,2))
}