zeek/auxil/spicy/tests/hilti/expressions/const-from-func.hlt
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

16 lines
218 B
Plaintext

# @TEST-EXEC: hiltic -j %INPUT >output
#
# @TEST-DOC: Check that globals can be initialized from calls to functions.
module Foo {
function uint<16> bar() {
return 4711;
}
global x = bar();
assert x == 4711;
}