mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
789 B
Solidity
27 lines
789 B
Solidity
library L {
|
|
function l(address payable a) public {
|
|
a.transfer(1);
|
|
}
|
|
}
|
|
|
|
contract C {
|
|
using L for address payable;
|
|
uint x;
|
|
function f(address payable a) public payable {
|
|
require(msg.value > 1);
|
|
uint b1 = address(this).balance;
|
|
a.l();
|
|
uint b2 = address(this).balance;
|
|
assert(b1 == b2); // should fail
|
|
assert(x == 0); // should fail because of `delegatecall`
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 4588: (238-243='a.l()'): Assertion checker does not yet implement this type of function call.
|
|
// Warning 6328: (282-298='assert(b1 == b2)'): CHC: Assertion violation happens here.
|
|
// Warning 6328: (317-331='assert(x == 0)'): CHC: Assertion violation happens here.
|
|
// Warning 1236: (54-67='a.transfer(1)'): BMC: Insufficient funds happens here.
|