solidity/test/libsolidity/smtCheckerTests/special/msg_sender_1.sol
2021-04-08 21:03:39 +02:00

10 lines
141 B
Solidity

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