summaryrefslogtreecommitdiff
path: root/test/files/pos/t5156.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t5156.scala')
-rw-r--r--test/files/pos/t5156.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t5156.scala b/test/files/pos/t5156.scala
index e7912ef35c..52412ad4c1 100644
--- a/test/files/pos/t5156.scala
+++ b/test/files/pos/t5156.scala
@@ -1,6 +1,6 @@
sealed trait HList
-final case class HCons[H, T <: HList](head : H, tail : T) extends HList
-case object HNil extends HList
+final case class HCons[H, T <: HList](head : H, tail : T) extends HList
+case object HNil extends HList
object HList {
type ::[H, T <: HList] = HCons[H, T]