mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[SMTChecker] fix handling of assignments of array/mapping state variable accessed using contract name
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
pragma experimental SMTChecker;
|
||||
contract A {
|
||||
int[] a;
|
||||
function f() public {
|
||||
A.a[0] = 2;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user