leo/tests/expectations/parser/finalize/finalize_statement_fail.out
2022-11-12 16:35:54 -08:00

12 lines
1.0 KiB
Plaintext

---
namespace: ParseStatement
expectation: Fail
outputs:
- "Error [EPAR0370009]: unexpected string: expected 'expression', found 'finalize'\n --> test:1:1\n |\n 1 | finalize(;\n | ^^^^^^^^"
- "Error [EPAR0370009]: unexpected string: expected 'expression', found 'finalize'\n --> test:1:1\n |\n 1 | finalize(foo, ,);\n | ^^^^^^^^"
- "Error [EPAR0370009]: unexpected string: expected 'expression', found 'finalize'\n --> test:1:1\n |\n 1 | finalize(foo, bar)\n | ^^^^^^^^"
- "Error [EPAR0370005]: expected ; -- found 'async'\n --> test:1:7\n |\n 1 | async async finalize(foo);\n | ^^^^^"
- "Error [EPAR0370009]: unexpected string: expected 'expression', found 'finalize'\n --> test:1:1\n |\n 1 | finalize;\n | ^^^^^^^^"
- "Error [EPAR0370005]: expected ; -- found 'finalize'\n --> test:1:6\n |\n 1 | asyn finalize(foo);\n | ^^^^^^^^"
- "Error [EPAR0370005]: expected finalize -- found 'fin'\n --> test:1:13\n |\n 1 | return then fin;\n | ^^^"