solidity/test/libyul/yulSyntaxTests/function_shadowing_outside_vars_2.yul
2022-04-01 23:41:18 -05:00

7 lines
159 B
Plaintext

{
let x:u256
function f() -> x:u256 {}
}
// ----
// DeclarationError 1395: (15-40='function f() -> x:u256 {}'): Variable name x already taken in this scope.