Files
hawk/t/h-021.hawk
hyung-hwan a351f7910f
All checks were successful
continuous-integration/drone/push Build is passing
implemented deferred module constant symbols
2026-03-04 22:16:02 +08:00

16 lines
213 B
Plaintext

@pragma implicit off
@pragma defermodsym on
@include "tap.inc";
BEGIN {
if (0)
{
nosuchmod::nosuchfnc(1, 2);
nosuchmod::nosuchconst;
}
tap_ok(sprintf("%s[%d]", @SCRIPTNAME, @SCRIPTLINE));
tap_end();
}