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

37 lines
603 B
Plaintext

### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
module Foo {
global bool x = private_used();
function bool private_unused() {
return False;
}
function bool private_unused1() {
return private_unused();
}
function bool private_used() {
return False;
}
public function bool public_unused() {
return False;
}
public function extern bool extern_unused1() {
return False;
}
function extern bool extern_unused2() {
return False;
}
init function void test_init() {
}
preinit function void test_preinit() {
}
}