solidity/test/libsolidity/semanticTests/array/byte_array_pop_empty_exception.sol
2020-03-19 14:42:25 +01:00

15 lines
198 B
Solidity

contract c {
uint256 a;
uint256 b;
uint256 c;
bytes data;
function test() public returns (bool) {
data.pop();
return true;
}
}
// ----
// test() -> FAILURE