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