summaryrefslogtreecommitdiff
path: root/testdata/Internals.out
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/Internals.out')
-rw-r--r--testdata/Internals.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/testdata/Internals.out b/testdata/Internals.out
index b2e7246e..8d522708 100644
--- a/testdata/Internals.out
+++ b/testdata/Internals.out
@@ -192,13 +192,13 @@ negate
192 :: forall v . Eq v => v -> v -> Bool 192 :: forall v . Eq v => v -> v -> Bool
193infix 4 == 193infix 4 ==
194data List (_ :: Type) :: Type where 194data List (_ :: Type) :: Type where
195 Nil :: List _a 195 [] :: List _a
196 (:) :: _a -> List _a -> List _a 196 (:) :: _a -> List _a -> List _a
197infixr 5 : 197infixr 5 :
198data HList :: List Type -> Type where 198data HList :: List Type -> Type where
199 HNil :: HList 'Nil 199 HNil :: HList 'Nil
200 HCons :: forall (a :: _) (b :: _) . a -> HList b -> HList (a : b) 200 HCons :: forall (a :: _) (b :: _) . a -> HList b -> HList (a : b)
201hlistNilCase :: forall (a :: _) -> a -> HList Nil -> a 201hlistNilCase :: forall (a :: _) -> a -> HList [] -> a
202hlistConsCase 202hlistConsCase
203 :: forall a (b :: List Type) 203 :: forall a (b :: List Type)
204 . forall (c :: _) -> (a -> HList b -> c) -> HList (a : b) -> c 204 . forall (c :: _) -> (a -> HList b -> c) -> HList (a : b) -> c
@@ -288,7 +288,7 @@ negate :: forall a . Num a => a -> a
288'Eq :: Type -> Type 288'Eq :: Type -> Type
289== :: forall a . Eq a => a -> a -> Bool 289== :: forall a . Eq a => a -> a -> Bool
290'List :: Type -> Type 290'List :: Type -> Type
291Nil :: forall a . List a 291[] :: forall a . List a
292(:) :: forall a . a -> List a -> List a 292(:) :: forall a . a -> List a -> List a
293'ListCase 293'ListCase
294 :: forall a 294 :: forall a