solidity/test/libsolidity/smtCheckerTests/special/this.sol
2022-04-01 23:41:18 -05:00

12 lines
234 B
Solidity

contract C
{
function f(address a) public view {
assert(a == address(this));
}
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 6328: (52-78='assert(a == address(this))'): CHC: Assertion violation happens here.