solidity/test/libsolidity/semanticTests/enums/constructing_enums_from_ints.sol
2020-03-19 14:42:25 +01:00

13 lines
198 B
Solidity

contract c {
enum Truth {False, True}
function test() public returns (uint256) {
return uint256(Truth(uint8(0x701)));
}
}
// ====
// compileViaYul: also
// ----
// test() -> 1