Merge pull request #9045 from ethereum/smt_fix_tuple

[SMTChecker] Fix internal error in tuples of tuples.
This commit is contained in:
Leonardo
2020-06-05 14:21:32 +02:00
committed by GitHub
4 changed files with 80 additions and 52 deletions
@@ -0,0 +1,6 @@
pragma experimental SMTChecker;
contract C {
function f3() public pure {
((, ), ) = ((7, 8), 9);
}
}