Updates syntax tests to new constructor syntax.

This commit is contained in:
Erik Kundt
2018-06-29 11:27:01 +02:00
parent 12c4eb7697
commit 1346b4407f
20 changed files with 43 additions and 50 deletions
@@ -1,6 +1,10 @@
// It is fine to "override" constructor of a base class since it is invisible
contract A { function A() public { } }
contract A { constructor() public {} }
contract B is A { function A() public pure returns (uint8) {} }
contract C is A { function A() public pure returns (uint8) {} }
contract D is B { function B() public pure returns (uint8) {} }
contract E is D { function B() public pure returns (uint8) {} }
// ----
// Warning: (91-114): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
// Warning: (135-178): This declaration shadows an existing declaration.
// Warning: (57-100): This declaration shadows an existing declaration.
// Warning: (121-164): This declaration shadows an existing declaration.
// Warning: (185-228): This declaration shadows an existing declaration.
// Warning: (249-292): This declaration shadows an existing declaration.