solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_empty.sol
2022-04-01 23:41:18 -05:00

8 lines
166 B
Solidity

contract C {
function f() public pure {
abi.decode("abc", ());
}
}
// ----
// Warning 6133: (52-73='abi.decode("abc", ())'): Statement has no effect.