solidity/test/libsolidity/smtCheckerTests/special/msg_sender_2.sol
2021-04-08 21:03:39 +02:00

13 lines
187 B
Solidity

contract C
{
function f() public view {
require(msg.sender != address(0));
address a = msg.sender;
address b = msg.sender;
assert(a == b);
}
}
// ====
// SMTEngine: all
// ----