diff --git a/tests/13_err-no-main.test b/tests/13_err-no-main.test index a92b865..5f75813 100644 --- a/tests/13_err-no-main.test +++ b/tests/13_err-no-main.test @@ -1,3 +1,3 @@ -void test () { +void test () { # Error on line 0 col -1: No main function. bool a = false; } diff --git a/tests/14_err-too-much-args.test b/tests/14_err-too-much-args.test index 8770027..62a0bbc 100644 --- a/tests/14_err-too-much-args.test +++ b/tests/14_err-too-much-args.test @@ -3,5 +3,5 @@ int foo (int a) { } void main () { - foo(13, 12); + foo(13, 12); # Error on line 6 col 8: Expected 1 arguments but given 2. } diff --git a/tests/15_err-args-missing.test b/tests/15_err-args-missing.test index 7c4e86f..40283eb 100644 --- a/tests/15_err-args-missing.test +++ b/tests/15_err-args-missing.test @@ -3,5 +3,5 @@ int foo (int a, int b) { } void main () { - foo(42); + foo(42); # Error on line 6 col 8: Expected 2 arguments but given 1. }