solidity/test/libsolidity/semanticTests/enums/using_inherited_enum.sol
2022-05-19 20:23:28 +02:00

15 lines
213 B
Solidity

contract base {
enum Choice {A, B, C}
}
contract test is base {
function answer() public returns (Choice _ret) {
_ret = Choice.B;
}
}
// ====
// compileToEwasm: also
// ----
// answer() -> 1