aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_simple.sol
blob: 356ee91c7525647b9fb1dfacce45819de0d56c15 (plain) (blame)
1
2
3
4
5
contract C {
  function f() public pure returns (uint, bytes32, C) {
    return abi.decode("abc", (uint, bytes32, C));
  }
}