solidity/test/libsolidity/smtCheckerTests/functions/functions_identifier_nested_tuple_3.sol

12 lines
274 B
Solidity
Raw Normal View History

contract C {
int[]data;
function f() public {
(data.pop)();
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 2529: (63-75): CHC: Empty array "pop" happens here.\nCounterexample:\ndata = []\n\nTransaction trace:\nC.constructor()\nState: data = []\nC.f()