mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #4169 from Arindam-Mondal/Arindam-Mondal-patch-1
Corrected typo
This commit is contained in:
commit
8f04c59046
@ -675,7 +675,7 @@ possible:
|
|||||||
function f() public {
|
function f() public {
|
||||||
// The next line creates a type error because uint[3] memory
|
// The next line creates a type error because uint[3] memory
|
||||||
// cannot be converted to uint[] memory.
|
// cannot be converted to uint[] memory.
|
||||||
uint[] x = [uint(1), 3, 4];
|
uint[] memory x = [uint(1), 3, 4];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user