removed the :* token
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-02 00:41:54 +09:00
parent 3d0cdb5366
commit 506b8fd9d7
7 changed files with 10 additions and 24 deletions

View File

@ -27,11 +27,11 @@ if (< 2 3) {} elif true else ##ERROR: syntax error - block expression expected
---
if else ##ERROR: syntax error - prohibited in this context - else
if else ##ERROR: syntax error - 'else' prohibited in this context
---
if elif else ##ERROR: syntax error - prohibited in this context - elif
if elif else ##ERROR: syntax error - 'elif' prohibited in this context
---

View File

@ -130,7 +130,7 @@ printf "%O\n" 35rabcdefghijklzabcd ##ERROR: syntax error - invalid numeric lite
---
printf :*; ##ERROR: syntax error - prohibited in this context
printf if; ##ERROR: syntax error - 'if' prohibited in this context
---
@ -140,7 +140,7 @@ fun :: fun1() { ##ERROR: syntax error - invalid function name '::' for 'fun'
---
fun :* fun1() { ##ERROR: syntax error - invalid function name ':*' for 'fun'
fun fun fun1() { ##ERROR: syntax error - invalid function name 'fun' for 'fun'
return 10;
};