1 2 3 4 5 6 7 8 9 10 11 12
contract C { function f() public returns (uint256) { uint256 x = 1; (x) = 2; return x; } } // ==== // compileToEwasm: also // compileViaYul: also // ---- // f() -> 2