solidity/test/libsolidity/syntaxTests/specialFunctions/abidecode/abi_decode_enum.sol
2023-07-18 12:58:11 +02:00

9 lines
181 B
Solidity

contract C {
enum Color { red, green, blue }
function f() pure public {
abi.decode("", (Color));
}
}
// ----
// Warning 6133: (88-111): Statement has no effect.