mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
15 lines
193 B
Plaintext
15 lines
193 B
Plaintext
circuit Foo {
|
|
static function qux() {}
|
|
|
|
static function bar() {
|
|
Self::qux();
|
|
}
|
|
|
|
static function baz() {
|
|
Self::bar();
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
Foo::baz();
|
|
} |