summaryrefslogtreecommitdiff
path: root/test/files/pos/gadts2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/gadts2.scala')
-rw-r--r--test/files/pos/gadts2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/gadts2.scala b/test/files/pos/gadts2.scala
index fc2a7e4333..d77c8a7ba4 100644
--- a/test/files/pos/gadts2.scala
+++ b/test/files/pos/gadts2.scala
@@ -4,7 +4,7 @@ object Test {
case class MyInt(n: Int) extends Number
case class MyDouble(d: Double) extends Number
- trait Term[+a]
+ trait Term[a]
case class Cell[a](var x: a) extends Term[a]
final case class NumTerm(val n: Number) extends Term[Number]