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

32 lines
910 B
Solidity
Raw Normal View History

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);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2023-02-09 16:07:13 +00:00
// Warning 6328: (43-72): CHC: Assertion violation happens here.
// Warning 6328: (370-399): CHC: Assertion violation happens here.
// Warning 6328: (510-539): CHC: Assertion violation happens here.
// Info 1391: CHC: 3 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.