solidity/test/libsolidity/smtCheckerTests/types/string_literal_comparison_2.sol
2019-08-10 21:51:46 +02:00

14 lines
261 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(bytes32 _x) public pure {
require(_x != "test");
bytes32 y = _x;
bytes32 z = _x;
assert(z == "test");
assert(y != "testx");
}
}
// ----
// Warning: (147-166): Assertion violation happens here