Files
hawk/t/e-001.err
hyung-hwan ca1cf488e4
All checks were successful
continuous-integration/drone/push Build is passing
added the static_mods table for adding externally added static modules
2025-12-16 17:58:01 +09:00

53 lines
761 B
Plaintext

BEGIN {
##ERROR: unexpected end of input
---
function abc(x { ##ERROR: comma expected in place of '{'
}
---
function abc (x, ...,) { ##ERROR: right parenthesis expected in place of ','
}
---
function abc (x, ..., a) { ##ERROR: right parenthesis expected in place of ','
}
---
function abc (... ...) { ##ERROR: right parenthesis expected in place of '...'
}
---
BEGIN {
@argv = 10 ##ERROR: invalid assignment statement
}
---
BEGIN {
@argc = 10 ##ERROR: invalid assignment statement
}
---
BEGIN {
@nil = 10 ##ERROR: invalid assignment statement
}
---
BEGIN {
@{};
@{ "hello", "world } ##ERROR: colon expected in place of ','
}
---
BEGIN {
hawk::call("sys::SIGTERM", 10 20); ##ERROR: 'sys::SIGTERM' not a function or unsupported
}