From 6f874e47b62705b28175b135b3372a19a8108bf3 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Fri, 3 Sep 2021 14:21:03 -0700 Subject: main: Add specialized error message for stray ';' at toplevel --- main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 004df85..e35419a 100644 --- a/main.c +++ b/main.c @@ -58,8 +58,11 @@ main(int argc, char *argv[]) } else { scopeinit(); while (tok.kind != TEOF) { - if (!decl(&filescope, NULL)) + if (!decl(&filescope, NULL)) { + if (tok.kind == TSEMICOLON) + error(&tok.loc, "unexpected ';' at top-level"); error(&tok.loc, "expected declaration or function definition"); + } } emittentativedefns(); } -- cgit v1.2.3