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

11 lines
225 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(string memory s1, string memory s2) public pure {
assert(bytes(s1).length == bytes(s2).length);
}
}
// ----
// Warning: (110-154): Assertion violation happens here