solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_storage.sol
2018-08-15 10:45:16 +02:00

9 lines
192 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'