mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
25 lines
481 B
Solidity
25 lines
481 B
Solidity
contract C {
|
|
enum X { A, B }
|
|
event Log(X);
|
|
|
|
function test_log() public returns (uint) {
|
|
X garbled = X.A;
|
|
assembly {
|
|
garbled := 5
|
|
}
|
|
emit Log(garbled);
|
|
return 1;
|
|
}
|
|
function test_log_ok() public returns (uint) {
|
|
X x = X.A;
|
|
emit Log(x);
|
|
return 1;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// test_log_ok() -> 1
|
|
// ~ emit Log(uint8): 0x00
|
|
// test_log() -> FAILURE, hex"4e487b71", 0x21
|