mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-27 12:17:35 +03:00
12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
function x(x: u32, constant y: i32) -> u8 {
|
|
return 0u8;
|
|
}
|
|
|
|
function x(constant x: u32, y: i32) -> u8 {
|
|
return 0u8;
|
|
} |