mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
16 lines
202 B
Plaintext
16 lines
202 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
*/
|
|
|
|
circuit Foo {
|
|
// static is deprecated
|
|
static function new() -> Self {
|
|
return Self { };
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
const a = Foo::new();
|
|
}
|