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

12 lines
150 B
Solidity

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