mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
16 lines
199 B
Text
16 lines
199 B
Text
# @TEST-EXEC: bro %INPUT >output 2>&1
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
type x: record {
|
|
a: table[int] of count;
|
|
};
|
|
|
|
global y: x;
|
|
|
|
global yy: table[int] of count;
|
|
|
|
y$a = yy;
|
|
|
|
y$a[+5] = 3;
|
|
|
|
print y;
|