mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
382c488edd
Whenever there was a proper invocation of events, the compiler assumed that all the subsequent invocations were proper.
17 lines
533 B
Solidity
17 lines
533 B
Solidity
contract test {
|
|
event SetFirstElem(uint indexed elem);
|
|
event SetSecondElem(uint indexed elem);
|
|
function setVal() external {
|
|
emit SetFirstElem(0);
|
|
}
|
|
function setValX() external {
|
|
// There was a missing error for this case.
|
|
// Whenever there was a proper invocation of events,
|
|
// the compiler assumed that all the subsequent invocations
|
|
// were proper.
|
|
SetFirstElem(1);
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 3132: (421-436): Event invocations have to be prefixed by "emit".
|