Idris2/tests/idris2/linear004/input

12 lines
318 B
Plaintext
Raw Normal View History

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