mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
268 B
Solidity
12 lines
268 B
Solidity
==== Source: A ====
|
|
contract test {
|
|
string memory a;
|
|
}
|
|
==== Source: B ====
|
|
contract test {
|
|
string calldata a;
|
|
}
|
|
// ----
|
|
// ParserError 2314: (A:27-33): Expected identifier but got 'memory'
|
|
// ParserError 2314: (B:27-35): Expected identifier but got 'calldata'
|