solidity/test/libsolidity/semanticTests/enums/constructing_enums_from_ints.sol

13 lines
198 B
Solidity
Raw Normal View History

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