solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_storage.sol

9 lines
197 B
Solidity

// This restriction might be lifted in the future
contract C {
function f() {
abi.decode("abc", (bytes storage));
}
}
// ----
// ParserError 2314: (109-116): Expected ',' but got 'storage'