solidity/test/libsolidity/semanticTests/extracted/byte_array_pop_isolated.sol
2020-03-18 11:56:43 -05:00

14 lines
244 B
Solidity

// This tests that the compiler knows the correct size of the function on the stack.
contract c {
bytes data;
function test() public returns (uint256 x) {
x = 2;
data.pop;
x = 3;
}
}
// ----
// test() -> 3