harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

commit cfcc22785c94716c0e96be23081d8bfd1f6c0466
parent 892a2a71ee13a66722ff02480790a482f02d814c
Author: Sebastian <sebastian@sebsite.pw>
Date:   Mon, 16 Jan 2023 04:42:21 -0500

tests/36-defines: add missing semicolon

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mtests/36-defines.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/36-defines.ha b/tests/36-defines.ha @@ -39,7 +39,7 @@ fn compatibility() void = { def TESTDEFINE: int = 0; ", "TESTDEFINE:uint=1": rt::define) as rt::exited != rt::EXIT_SUCCESS); assert(rt::compile(" - const TEST = 1 + const TEST = 1; ", "TEST=0": rt::define) as rt::exited != rt::EXIT_SUCCESS); };