Fix test for replacing base constructor

This commit is contained in:
Kamil Śliwak
2023-02-15 14:17:55 +01:00
parent 1b0f7af707
commit 16bc4c6b5f
@@ -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.