mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
220 B
Solidity
14 lines
220 B
Solidity
contract c {
|
|
enum Truth {False, True}
|
|
|
|
function test() public returns (uint256) {
|
|
return uint256(Truth(uint8(0x1)));
|
|
}
|
|
}
|
|
|
|
// ====
|
|
// compileViaYul: also
|
|
// compileToEwasm: also
|
|
// ----
|
|
// test() -> 1
|