mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
221 B
Solidity
8 lines
221 B
Solidity
contract C {
|
|
function f() public {
|
|
try this.f() {} catch (string calldata a) { }
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 6651: (70-87): Data location must be "memory" for parameter in function, but "calldata" was given.
|