Merge pull request #4169 from Arindam-Mondal/Arindam-Mondal-patch-1

Corrected typo
This commit is contained in:
chriseth 2018-05-28 23:38:48 +02:00 committed by GitHub
commit 8f04c59046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -675,7 +675,7 @@ possible:
function f() public {
// The next line creates a type error because uint[3] memory
// cannot be converted to uint[] memory.
uint[] x = [uint(1), 3, 4];
uint[] memory x = [uint(1), 3, 4];
}
}