diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-07-29 06:09:06 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-08-15 10:04:35 +0900 |
| commit | f91a10ae153f41c46729605ecf0023d11ada07b8 (patch) | |
| tree | 0bf858a43490f88e20fd4006543e069cfa54b43d /tests/064.sh | |
| parent | bd5bbdebf116bb03da335d0e18a55a5597b55548 (diff) | |
| download | ducc-f91a10ae153f41c46729605ecf0023d11ada07b8.tar.gz ducc-f91a10ae153f41c46729605ecf0023d11ada07b8.tar.zst ducc-f91a10ae153f41c46729605ecf0023d11ada07b8.zip | |
feat: implement empty statements (only semicolon)
Diffstat (limited to 'tests/064.sh')
| -rw-r--r-- | tests/064.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/064.sh b/tests/064.sh index 80fba4f..c3b6028 100644 --- a/tests/064.sh +++ b/tests/064.sh @@ -14,9 +14,7 @@ EOF bash ../../test_exit_code.sh 0 <<'EOF' int main() { - if (1) { - } else { - return 1; - } + if (1); + else return 1; } EOF |
