Move most event-related syntax tests from nameAndTypeResolution/ to events/

This commit is contained in:
Kamil Śliwak
2020-09-09 14:53:46 +02:00
parent d089b56457
commit 6f41e83b48
21 changed files with 0 additions and 0 deletions
@@ -0,0 +1,12 @@
contract B {
event dup();
}
contract A {
function dup() public returns (uint) {
return 1;
}
}
contract C is B, A {
}
// ----
// DeclarationError 9097: (49-111): Identifier already declared.