leo/tests/compiler/circuits/self_circuit.leo

16 lines
202 B
Plaintext
Raw Normal View History

2021-05-05 11:37:51 +03:00
/*
namespace: Compile
expectation: Fail
*/
2020-07-17 06:47:47 +03:00
circuit Foo {
2021-05-05 11:37:51 +03:00
// static is deprecated
2020-07-17 22:59:18 +03:00
static function new() -> Self {
return Self { };
2020-07-17 22:59:18 +03:00
}
}
2020-07-30 21:11:54 +03:00
function main() {
const a = Foo::new();
2021-05-12 20:47:03 +03:00
}