added a new error case. the case yet to be resolved in implementation
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
hyung-hwan 2024-01-20 10:12:37 +09:00
parent b35ed20c68
commit f88c3a9c1f
3 changed files with 10 additions and 0 deletions

View File

@ -15,6 +15,7 @@ check_ERRORS = \
do-01.err \
do-02.err \
feed-01.err \
feed-02.err \
mlist-01.err \
var-01.err \
var-02.err \

View File

@ -486,6 +486,7 @@ check_ERRORS = \
do-01.err \
do-02.err \
feed-01.err \
feed-02.err \
mlist-01.err \
var-01.err \
var-02.err \

8
t/feed-02.err Normal file
View File

@ -0,0 +1,8 @@
## while EOL is ignored in explicitly parenthesized XLIST, a semicolon must not be.
(printf
"hello, world\n"
)
(printf; ##ERROR: synax error - unexpected semicolon
"hello, world\n"
)