solidity/test/libsolidity/smtCheckerTests/bmc_coverage/msg_value_4.sol

18 lines
433 B
Solidity
Raw Normal View History

contract A {
uint x = msg.value;
constructor() {
assert(x == 0); // should hold
}
}
contract B {
constructor() payable {
assert(msg.value == 0); // should fail
}
}
// ====
// SMTEngine: bmc
// ----
2021-03-31 15:11:54 +00:00
// Warning 4661: (154-176): BMC: Assertion violation happens here.
2023-02-09 16:07:13 +00:00
// Info 6002: BMC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.