hcl/t/feed-03.err
hyung-hwan e3120e20a2
All checks were successful
continuous-integration/drone/push Build is passing
fixed wrong semicolon handling and enhanced eol/semiclon handling
2024-01-21 02:23:19 +09:00

10 lines
154 B
Plaintext

## semicolon inside #{} must raise a syntax error
a := #{
"k1":
"hello k1\n",
"k2":
"hello k2\n"; ##ERROR: syntax error - unexpected semicolon
};