mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00
14 lines
242 B
Text
14 lines
242 B
Text
# @TEST-EXEC: bro %INPUT >output 2>&1
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
# Make sure composit types in records are initialized.
|
|
|
|
type Foo: record {
|
|
a: set[count];
|
|
b: table[count] of string;
|
|
c: vector of string;
|
|
};
|
|
|
|
global f: Foo;
|
|
|
|
print f;
|