solidity/test/libsolidity/smtCheckerTests/types/string_1.sol

11 lines
230 B
Solidity
Raw Normal View History

2019-02-20 15:41:54 +00:00
pragma experimental SMTChecker;
contract C
{
function f(string memory s1, string memory s2) public pure {
assert(bytes(s1).length == bytes(s2).length);
}
}
// ----
// Warning 4661: (110-154): Assertion violation happens here