unison/unison-src/transcripts/fix2354.md
2024-06-25 11:11:07 -07:00

15 lines
239 B
Markdown

```ucm:hide
scratch/main> builtins.merge
```
Tests that delaying an un-annotated higher-rank type gives a normal
type error, rather than an internal compiler error.
```unison:error
f : (forall a . a -> a) -> Nat
f id = id 0
x = 'f
```