Merge pull request #3585 from aaroncolaco/develop

Fix example; closes #3582
This commit is contained in:
Alex Beregszaszi 2018-02-26 10:21:08 +01:00 committed by GitHub
commit 6b3a5e5d87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -542,12 +542,27 @@ contract level) with ``arrayname.length = <some new length>;``. If you get the
::
// This will not compile
pragma solidity ^0.4.18;
contract C {
int8[] dynamicStorageArray;
int8[5] fixedStorageArray;
function f() {
int8[] memory memArr; // Case 1
memArr.length++; // illegal
int8[5] storageArr; // Case 2
somearray.length++; // legal
int8[5] storage storageArr2; // Explicit case 2
somearray2.length++; // legal
int8[5] storage storageArr = fixedStorageArray; // Case 2
storageArr.length++; // illegal
int8[] storage storageArr2 = dynamicStorageArray;
storageArr2.length++; // legal
}
}
**Important note:** In Solidity, array dimensions are declared backwards from the way you
might be used to declaring them in C or Java, but they are access as in