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

8 lines
137 B
Solidity
Raw Normal View History

2018-09-04 14:24:21 +00:00
contract C {
function f() public pure {
abi.decode("abc", ());
}
}
// ----
// Warning: (52-73): Statement has no effect.