15 lines
212 B
Plaintext
15 lines
212 B
Plaintext
# @TEST-EXEC: zeek -b %INPUT >output 2>&1
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
type foo: enum { a, b } &redef;
|
|
|
|
module test;
|
|
|
|
redef enum foo += { c };
|
|
|
|
export {
|
|
type foo: enum { a, b };
|
|
}
|
|
|
|
print ::a, ::b, a, b, c;
|