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

14 lines
258 B
Solidity
Raw Normal View History

2020-04-14 09:09:38 +00:00
pragma experimental SMTChecker;
contract C {
uint[] arr;
function f() public view {
uint x = arr.length;
uint y = x;
assert(arr.length == y);
assert(arr.length != y);
}
}
// ----
// Warning 6328: (153-176): CHC: Assertion violation happens here.