leo/compiler/tests/circuits/self_circuit.leo
2020-07-17 12:59:18 -07:00

9 lines
131 B
Plaintext

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