2021-01-27 06:59:58 +00:00
|
|
|
contract C {
|
|
|
|
|
|
|
|
function f() public view {
|
|
|
|
assert(msg.sender >= address(0)); // should hold
|
|
|
|
assert(msg.sender <= address(2**160-1)); // should hold
|
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
2021-03-12 23:02:36 +00:00
|
|
|
// SMTEngine: all
|