Cleanup 0.5.0 test cases

This commit is contained in:
Alex Beregszaszi
2018-08-06 12:03:00 +01:00
parent 74e6067347
commit 2ab66bf798
23 changed files with 11 additions and 106 deletions
@@ -1,7 +0,0 @@
pragma experimental "v0.5.0";
contract A { constructor(uint) public { } }
contract B is A(2) { constructor() public { } }
contract C is B { constructor() A(3) public { } }
// ----
// DeclarationError: (156-160): Base constructor arguments given twice.
@@ -1,6 +0,0 @@
pragma experimental "v0.5.0";
contract A { constructor(uint) public { } }
contract B is A(2) { constructor() A(3) public { } }
// ----
// DeclarationError: (110-114): Base constructor arguments given twice.