solidity/test/libsolidity/semanticTests/viaYul/local_variable_without_init.sol
2022-05-19 20:23:28 +02:00

11 lines
153 B
Solidity

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