solidity/test/libsolidity/smtCheckerTests/special/msg_sender_1.sol
2021-04-20 17:38:29 +02:00

12 lines
150 B
Solidity

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