leo/compiler/disabled_tests/parser/circuits/field_and_functions.leo

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 ();
}
}