mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
13 lines
232 B
Text
13 lines
232 B
Text
# @TEST-EXEC-FAIL: zeek -b %INPUT
|
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
|
|
|
type test: record {
|
|
a: count;
|
|
a: string &optional;
|
|
};
|
|
|
|
event zeek_init()
|
|
{
|
|
local a = test($a=5);
|
|
print a;
|
|
}
|