blob: d9910b64c5ed7824a1836da073af3509a0adc128 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// This restriction might be lifted in the future
contract C {
function f() {
abi.decode("abc", (bytes storage));
}
}
// ----
// ParserError: (109-116): Expected ',' but got 'storage'
|