solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_empty.sol
2018-09-04 18:19:00 +02:00

8 lines
137 B
Solidity

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