solidity/test/libsolidity/smtCheckerTests/array_members/length_basic.sol

14 lines
355 B
Solidity
Raw Normal View History

2020-04-14 09:09:38 +00:00
contract C {
uint[] arr;
function f() public view {
uint x = arr.length;
uint y = x;
assert(arr.length == y);
assert(arr.length != y);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2020-04-14 09:09:38 +00:00
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (120-143): CHC: Assertion violation happens here.\nCounterexample:\narr = []\nx = 0\ny = 0\n\nTransaction trace:\nC.constructor()\nState: arr = []\nC.f()