aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_empty.sol
blob: 9972f01de50a3085efcf42eb39f2dc1d0790ef37 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() public pure {
        abi.decode("abc", ());
    }
}
// ----
// Warning: (52-73): Statement has no effect.