2018-04-17 09:39:40 +00:00
|
|
|
// The constructor of a base class should not be visible in the derived class
|
2018-07-12 01:24:50 +00:00
|
|
|
contract A { function A(string memory s) public { } }
|
2018-04-17 09:39:40 +00:00
|
|
|
contract B is A {
|
|
|
|
function f() pure public {
|
|
|
|
A x = A(0); // convert from address
|
|
|
|
string memory y = "ab";
|
|
|
|
A(y); // call as a function is invalid
|
|
|
|
x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2018-07-12 01:24:50 +00:00
|
|
|
// Warning: (91-129): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
|
|
|
|
// TypeError: (251-255): Explicit type conversion not allowed from "string memory" to "contract A".
|