hcl/t/feed-01.err
hyung-hwan bb4786b6ca
Some checks failed
continuous-integration/drone/push Build is failing
some compiler enhancements
2023-11-29 15:54:37 +09:00

7 lines
303 B
Plaintext

## the left brace opens a list explicitly and doesn't auto-forge a container list.
## so the semicolon after it is a redundant one. `do {};` would work because the semicolon
## terminates the auto-forged list of `do` and `{}`.
{
printf "hello, world\n";
}; ##ERROR: syntax error - unexpected semicolon