solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_storage.sol
2020-01-08 16:12:06 +01: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"