leo/compiler/tests/circuits/self.leo
2020-06-07 20:45:19 -07:00

9 lines
124 B
Plaintext

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