aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/tcpoly_seq_typealias.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/tcpoly_seq_typealias.scala')
-rw-r--r--tests/pending/pos/tcpoly_seq_typealias.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pending/pos/tcpoly_seq_typealias.scala b/tests/pending/pos/tcpoly_seq_typealias.scala
index 8d2f6e7c3..b758ecd99 100644
--- a/tests/pending/pos/tcpoly_seq_typealias.scala
+++ b/tests/pending/pos/tcpoly_seq_typealias.scala
@@ -129,7 +129,7 @@ trait HOSeq {
// TODO: the var tl approach does not seem to work because subtyping isn't fully working yet
final case class ::[+b](hd: b, private val tl: List[b]) extends List[b] {
def head = hd
- def tail = if(tl==null) this else tl // hack
+ def tail = if (tl==null) this else tl // hack
override def isEmpty: Boolean = false
}