mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #7734 from ethereum/smt_fix_060
Fix SMTChecker tests on 060
This commit is contained in:
commit
564f20086d
@ -1,10 +0,0 @@
|
|||||||
pragma experimental SMTChecker;
|
|
||||||
contract C {
|
|
||||||
function f(address a, function(uint) external g) internal pure {
|
|
||||||
address b = address(g);
|
|
||||||
assert(a == b);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// ----
|
|
||||||
// Warning: (128-138): Type conversion is not yet fully supported and might yield false positives.
|
|
||||||
// Warning: (142-156): Assertion violation happens here
|
|
@ -0,0 +1,10 @@
|
|||||||
|
pragma experimental SMTChecker;
|
||||||
|
contract C {
|
||||||
|
function f(address a, function(uint) external g) internal pure {
|
||||||
|
address b = g.address;
|
||||||
|
assert(a == b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// ----
|
||||||
|
// Warning: (128-137): Assertion checker does not yet support this expression.
|
||||||
|
// Warning: (141-155): Assertion violation happens here
|
Loading…
Reference in New Issue
Block a user