mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 23:41:38 +03:00
16 lines
197 B
Plaintext
16 lines
197 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
circuit X {
|
|
static const a: u8 = 10u8;
|
|
x: u32,
|
|
y: u32
|
|
function x() {
|
|
return ();
|
|
}
|
|
function y() {
|
|
return ();
|
|
}
|
|
} |