Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

24 lines
494 B
Plaintext

### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
module Foo {
type X = struct {
hook void implemented();
};
global optional<int<64>> i = default<optional<int<64>>>();
global X x;
global optional<int<64>> j = default<optional<int<64>>>();
declare public function hook void global_implemented();
function hook void global_implemented() {
}
method hook void X::implemented() {
}
global_implemented();
x.implemented();
}