solidity/test/libsolidity/semanticTests/viaYul/return.sol
2019-04-30 13:10:36 +02:00

11 lines
153 B
Solidity

contract C {
function f() public pure returns (uint x) {
return 7;
x = 3;
}
}
// ====
// compileViaYul: true
// ----
// f() -> 7