mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
322 B
Solidity
11 lines
322 B
Solidity
contract C {
|
|
function f(uint[] calldata _c) public pure {
|
|
uint[] calldata c;
|
|
if (_c[2] > 10)
|
|
c = _c;
|
|
c[2];
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 3464: (141-142): This variable is of calldata pointer type and can be accessed without prior assignment, which would lead to undefined behaviour.
|