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