solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_storage.sol
2022-04-01 23:41:18 -05:00

9 lines
207 B
Solidity

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