solidity/test/libsolidity/semanticTests/reverts/invalid_enum_as_external_ret.sol

34 lines
702 B
Solidity
Raw Normal View History

contract C {
enum X {A, B}
function test_return() public returns (X) {
X garbled;
assembly {
garbled := 5
}
return garbled;
}
function test_inline_assignment() public returns (X _ret) {
assembly {
_ret := 5
}
}
function test_assignment() public returns (X _ret) {
X tmp;
assembly {
tmp := 5
}
_ret = tmp;
}
}
// ====
2020-10-13 11:28:39 +00:00
// EVMVersion: >=byzantium
// compileToEwasm: also
// ----
2020-10-13 11:28:39 +00:00
// test_return() -> FAILURE, hex"4e487b71", 33 # both should throw #
// test_inline_assignment() -> FAILURE, hex"4e487b71", 33
// test_assignment() -> FAILURE, hex"4e487b71", 33