harec

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

commit bbafe7be06ab3604ce1feb1fc7bf511ba0e8bf03
parent 8da848e1419c15c448e91f5c0fe987162784b572
Author: Armin Weigl <tb46305@gmail.com>
Date:   Sat,  2 Jul 2022 13:39:09 +0200

tests/15-enums: unexport resolution_order test

forgot to change it when I copied it from the commit message

Signed-off-by: Armin Weigl <tb46305@gmail.com>

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

diff --git a/tests/15-enums.ha b/tests/15-enums.ha @@ -151,7 +151,7 @@ type t2 = enum { T3 = T2 + 1, }; -export fn resolution_order() void = { +fn resolution_order() void = { assert(t2::T1 == 0); assert(t2::T2 == 1); assert(t2::T3 == 2);