Open
Description
Steps
% echo 'λ(a : Type) → ' > q.dhall;
% wc -l q.dhall;
1 q.dhall
% echo ./q.dhall | dhall-to-json
↳ ./q.dhall
Error: Invalid input
/Users/jsoref/code/validators/dhall-validator-action/q.dhall:2:1:
|
2 | <empty line>
| ^
unexpected end of input
expecting expression or whitespace
1│ ./q.dhall
(input):1:1
Expected results
% echo 'λ(a : Type) → ' > q.dhall;
% wc -l q.dhall;
1 q.dhall
% echo ./q.dhall | dhall-to-json
↳ ./q.dhall
Error: Invalid input
/Users/jsoref/code/validators/dhall-validator-action/q.dhall:1:18:
|
1 | <end of file>
| ^
unexpected end of input
expecting expression or whitespace
1│ ./q.dhall
(input):1:1
(n.b. #2210 should adjust the last line of this output... )