You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code compiles without warnings, even though Foo overwrites the Approve(address,address) event with an incompatible one. This should fail to compile because it's not an overloading of Approve with a different signature, but a replacement of it with an incompatible one, because of the indexed.
@axic This is inheritance related, since the problem is that the events from the super contract are not propagating. Do we still want it for 0.5.0 or for the Inheritance project?
The following code compiles without warnings, even though
Foo
overwrites theApprove(address,address)
event with an incompatible one. This should fail to compile because it's not an overloading ofApprove
with a different signature, but a replacement of it with an incompatible one, because of theindexed
.Related to #4168.
The text was updated successfully, but these errors were encountered: