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

17 lines
302 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.