refresh transcripts

This commit is contained in:
Paul Chiusano 2022-12-02 16:08:40 -06:00
parent 6d6091fe2f
commit 8d1ac3bc29
3 changed files with 19 additions and 0 deletions

View File

@ -15,6 +15,13 @@ x = 'f
where I expected to find: (a -> 𝕣1) -> 𝕣
1 | f : (forall a . a -> a) -> Nat
2 | f id = id 0
3 |
4 | x = 'f
from right here:
1 | f : (forall a . a -> a) -> Nat
```

View File

@ -37,6 +37,7 @@ ex2 = do
where I expected to find: Unit
2 | Stream.emit
3 | 42
Hint: Actions within a block must have type Unit.
Use _ = <expr> to ignore a result.
@ -97,6 +98,11 @@ ex4 =
where I expected to find: Unit
2 | [1,2,3] -- no good
3 | ()
from right here:
2 | [1,2,3] -- no good
Hint: Actions within a block must have type Unit.
Use _ = <expr> to ignore a result.

View File

@ -46,6 +46,12 @@ h0 req = match req with
where I expected to find: Optional a
1 | h0 : Request {X t} b -> Optional b
2 | h0 req = match req with
3 | { X.x _ c -> _ } -> handle c with h0
from right here:
1 | h0 : Request {X t} b -> Optional b
```