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

14 lines
170 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/dummy.in
*/
type int = u32;
function main(y: bool) -> bool {
let int: int = 1u32;
return y;
}