Fix missing error when events are used without an emit statement.

Whenever there was a proper invocation of events, the compiler assumed that all the subsequent
invocations were proper.
This commit is contained in:
hrkrshnn
2021-04-12 10:23:05 +02:00
parent 124db22f04
commit 382c488edd
2 changed files with 17 additions and 0 deletions
@@ -0,0 +1,16 @@
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".