leo/compiler/tests/circuits/self_circuit.leo
2020-07-16 20:47:47 -07:00

9 lines
121 B
Plaintext

circuit Foo {
static function new() -> Self {
return Self { }
}
}
function main() -> Foo {
return Foo::new()
}