Update tests.

This commit is contained in:
chriseth
2020-07-07 12:16:18 +02:00
parent 747aeb4999
commit 9743390a53
325 changed files with 757 additions and 776 deletions
@@ -1,5 +1,5 @@
// The constructor of a base class should not be visible in the derived class
contract A { constructor(string memory) public { } }
contract A { constructor(string memory) { } }
contract B is A {
function f() pure public {
A x = A(0); // convert from address
@@ -9,5 +9,5 @@ contract B is A {
}
}
// ----
// TypeError 3656: (131-301): Contract "B" should be marked as abstract.
// TypeError 9640: (250-254): Explicit type conversion not allowed from "string memory" to "contract A".
// TypeError 3656: (124-294): Contract "B" should be marked as abstract.
// TypeError 9640: (243-247): Explicit type conversion not allowed from "string memory" to "contract A".