Idris2/tests/idris2/linear004/input
Edwin Brady a972778eab Add test script
They don't all pass yet, for minor reasons. Coming shortly...
Unfortunately the startup overhead for chez is really noticeable here!
2020-05-19 18:25:18 +01:00

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