solidity/test/libsolidity/smtCheckerTests/array_members/length_basic.sol
2020-05-14 23:32:29 +02:00

14 lines
247 B
Solidity

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: (153-176): Assertion violation happens here