Merge pull request #7734 from ethereum/smt_fix_060

Fix SMTChecker tests on 060
This commit is contained in:
Erik K
2019-11-19 11:58:54 +01:00
committed by GitHub
2 changed files with 10 additions and 10 deletions
@@ -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