mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-01 08:19:32 +03:00
12 lines
146 B
Plaintext
12 lines
146 B
Plaintext
/*
|
|
namespace: Parse
|
|
expectation: Pass
|
|
*/
|
|
|
|
function x(x: u32, const y: i32) {
|
|
return ();
|
|
}
|
|
|
|
function x(const x: u32, y: i32) {
|
|
return ();
|
|
} |