2018-06-30 16:09:13 +00:00
|
|
|
// This restriction might be lifted in the future
|
|
|
|
contract C {
|
|
|
|
function f() public pure {
|
|
|
|
abi.decode("abc", (bytes calldata));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// ParserError 2314: (121-129): Expected ',' but got 'calldata'
|