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

31 lines
787 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
2020-10-13 11:47:03 +00:00
function f() public pure {
assert(msg.sig == 0x00000000);
2020-10-13 11:47:03 +00:00
assert(msg.sig == 0x26121ff0);
fi();
gi();
}
function fi() internal pure {
assert(msg.sig == 0x26121ff0);
}
function g() public pure {
assert(msg.sig == 0xe2179b8e);
gi();
}
function gi() internal pure {
// Fails since f can also call gi in which case msg.sig == 0x26121ff0
assert(msg.sig == 0xe2179b8e);
}
function h() public pure {
// Fails since gi can also call h in which case msg.sig can be f() or g()
assert(msg.sig == 0xe2179b8e);
}
}
// ----
2020-10-13 11:47:03 +00:00
// Warning 6328: (76-105): CHC: Assertion violation happens here.
// Warning 6328: (403-432): CHC: Assertion violation happens here.
// Warning 6328: (543-572): CHC: Assertion violation happens here.