mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 02:23:44 +03:00
a972778eab
They don't all pass yet, for minor reasons. Coming shortly... Unfortunately the startup overhead for chez is really noticeable here!
12 lines
318 B
Plaintext
12 lines
318 B
Plaintext
efn (\x, y => y) -- Good
|
|
efn (\x, y => plus y y) -- Good
|
|
efn ignore -- Good
|
|
efn (\x, y => x) -- Bad
|
|
efn plus -- Bad
|
|
efn lin -- Bad
|
|
efn (\x, y => plus x y) -- Bad
|
|
okfn plus -- Good
|
|
okfn lin -- Good
|
|
okfn ignore -- Bad
|
|
:q
|