aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t6966.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t6966.scala')
-rw-r--r--tests/pending/pos/t6966.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/pending/pos/t6966.scala b/tests/pending/pos/t6966.scala
index a43d7c501..cd91221a6 100644
--- a/tests/pending/pos/t6966.scala
+++ b/tests/pending/pos/t6966.scala
@@ -2,13 +2,13 @@ import Ordering.{Byte, comparatorToOrdering}
trait Format[T]
trait InputCache[T]
object CacheIvy {
- implicit def basicInputCache[I](implicit fmt: Format[I], eqv: Equiv[I]): InputCache[I] = null
- implicit def arrEquiv[T](implicit t: Equiv[T]): Equiv[Array[T]] = null
- implicit def hNilCache: InputCache[HNil] = null
- implicit def ByteArrayFormat: Format[Array[Byte]] = null
- type :+:[H, T <: HList] = HCons[H,T]
- implicit def hConsCache[H, T <: HList](implicit head: InputCache[H], tail: InputCache[T]): InputCache[H :+: T] = null
- hConsCache[Array[Byte], HNil]
+ implicit def basicInputCache[I](implicit fmt: Format[I], eqv: Equiv[I]): InputCache[I] = null
+ implicit def arrEquiv[T](implicit t: Equiv[T]): Equiv[Array[T]] = null
+ implicit def hNilCache: InputCache[HNil] = null
+ implicit def ByteArrayFormat: Format[Array[Byte]] = null
+ type :+:[H, T <: HList] = HCons[H,T]
+ implicit def hConsCache[H, T <: HList](implicit head: InputCache[H], tail: InputCache[T]): InputCache[H :+: T] = null
+ hConsCache[Array[Byte], HNil]
}
sealed trait HList