solidity/test/libsolidity/semanticTests/viaYul/local_variable_without_init.sol
2023-05-11 10:56:55 -05:00

9 lines
121 B
Solidity

contract C {
function f() public pure returns (uint) {
uint x;
return x;
}
}
// ----
// f() -> 0