24 lines
494 B
Plaintext
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();
|
|
|
|
}
|