unison/unison-src/transcripts/fix2354.md

15 lines
239 B
Markdown
Raw Permalink Normal View History

2022-10-12 02:25:05 +03:00
```ucm:hide
scratch/main> builtins.merge
2022-10-12 02:25:05 +03:00
```
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
```