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

10 lines
141 B
Solidity
Raw Normal View History

contract C
{
function f() public view {
address a = msg.sender;
address b = msg.sender;
assert(a == b);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all