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

9 lines
193 B
Solidity

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