solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_empty.sol

8 lines
142 B
Solidity

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