leo/tests/compiler/aliases/shadowing_arg.leo
2021-08-25 07:30:17 -07:00

12 lines
144 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/basic.in
*/
type x = u32;
function main(x: x, y: bool) -> bool {
return y;
}