Fix test for replacing base constructor

This commit is contained in:
Kamil Śliwak
2023-02-20 15:34:47 +01:00
committed by Nikola Matic
parent 3e97809d7c
commit 62df913251
@@ -1,4 +1,4 @@
contract A { constructor(uint a) { } }
contract B is A { }
contract B is A { constructor(bytes4 a, bytes28 b) { } }
// ----
// TypeError 3656: (39-58): Contract "B" should be marked as abstract.