solidity/test/libsolidity/smtCheckerTests/special/msg_sender_1.sol

11 lines
149 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f() public view {
address a = msg.sender;
address b = msg.sender;
assert(a == b);
}
}