[SMTChecker] Fix internal error in tuples of tuples.

This commit is contained in:
Leonardo Alt
2020-06-05 12:20:47 +02:00
parent d4552678a9
commit 87ceb72b82
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);
}
}