[SMTChecker] fix handling of assignments of array/mapping state variable accessed using contract name

This commit is contained in:
Martin Blicha
2021-03-12 14:01:07 +01:00
parent 1265b39904
commit 0cb75293f9
2 changed files with 24 additions and 16 deletions
@@ -0,0 +1,8 @@
pragma experimental SMTChecker;
contract A {
int[] a;
function f() public {
A.a[0] = 2;
}
}