leo/tests/parser/circuits/field_and_functions.leo
2022-01-28 10:34:02 -08:00

16 lines
195 B
Plaintext

/*
namespace: Parse
expectation: Pass
*/
circuit X {
static const a: u8 = 10;
x: u32,
y: u32
function x() {
return ();
}
function y() {
return ();
}
}