solidity/test/libsolidity/smtCheckerTests/functions/functions_identifier_nested_tuple_3.sol
2021-04-08 21:03:39 +02:00

12 lines
274 B
Solidity

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