2020-03-09 21:14:07 +00:00
|
|
|
contract c {
|
|
|
|
uint256 a;
|
|
|
|
uint256 b;
|
|
|
|
uint256 c;
|
|
|
|
bytes data;
|
|
|
|
|
|
|
|
function test() public returns (bool) {
|
|
|
|
data.pop();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-05-05 17:53:17 +00:00
|
|
|
// ====
|
|
|
|
// compileViaYul: also
|
2020-03-09 21:14:07 +00:00
|
|
|
// ----
|
|
|
|
// test() -> FAILURE
|