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

@ -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;
};