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