aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_memory.sol
blob: e4667e34d223a35dec650e6cbf2e693e8dbd6b5c (plain) (blame)
1
2
3
4
5
6
7
contract C {
  function f() public pure {
    abi.decode("abc", (bytes memory, uint[][2] memory));
  }
}
// ----
// ParserError: (71-77): Expected ',' but got 'memory'