commit 59223dd86c45c9e1b13bba429aaf2083d03e62be parent bd60990198d6ed1eb43892bb770fb9c93cac3b31 Author: citbl <citbl@citbl.org> Date: Sun, 16 Nov 2025 20:09:44 +1000 minor Diffstat:
| M | tests/ex-if-no-parens-2.ox | | | 5 | +++++ |
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/tests/ex-if-no-parens-2.ox b/tests/ex-if-no-parens-2.ox @@ -1,5 +1,10 @@ +void f() { + return; +} + void main() { int i = 0; + f(); if(i == 0) print("yes"); else print("no"); if(i != 0) print("no"); else print("yes"); }