2018-10-18 13:03:52 +00:00
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f() public view {
|
|
|
|
require(msg.sender != address(0));
|
|
|
|
address a = msg.sender;
|
|
|
|
address b = msg.sender;
|
|
|
|
assert(a == b);
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2018-10-18 13:03:52 +00:00
|
|
|
// ----
|