mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Adjusts syntax tests to read-only array length.
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
contract C {
|
||||
function f(uint[] calldata x) external {
|
||||
x.push();
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (66-72): Member "push" is not available in uint256[] calldata outside of storage.
|
||||
@@ -0,0 +1,8 @@
|
||||
contract C {
|
||||
function f() public {
|
||||
uint[] memory x;
|
||||
x.push();
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// TypeError: (72-78): Member "push" is not available in uint256[] memory outside of storage.
|
||||
Reference in New Issue
Block a user