leo/asg/tests/pass/circuits/self_circuit.leo
2021-01-25 07:19:38 -08:00

9 lines
126 B
Plaintext

circuit Foo {
static function new() -> Self {
return Self { }
}
}
function main() {
let a = Foo::new();
}