mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
6 lines
191 B
Solidity
6 lines
191 B
Solidity
contract C {
|
|
constructor(uint[] calldata) public {}
|
|
}
|
|
// ----
|
|
// TypeError 6651: (29-44): Data location must be "storage" or "memory" for constructor parameter, but "calldata" was given.
|