leo/disabled_tests/compiler/aliases/shadowing_arg.leo

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;
}