mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-19 08:02:14 +03:00
24 lines
376 B
Plaintext
24 lines
376 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
circuit X {
|
|
x: u32
|
|
const function x() {
|
|
return ();
|
|
}
|
|
const function x(self) {
|
|
return ();
|
|
}
|
|
const function c(const self) {
|
|
return ();
|
|
}
|
|
const function b(const self, x: u32) {
|
|
return ();
|
|
}
|
|
const function b(const self, const x: u32) {
|
|
return ();
|
|
}
|
|
}
|