solidity/test/libsolidity/syntaxTests/constructor/constructor_visibility.sol

14 lines
478 B
Solidity
Raw Normal View History

2018-04-17 09:39:40 +00:00
// The constructor of a base class should not be visible in the derived class
contract A { constructor(string memory) 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;
}
}
// ----
2019-11-04 13:12:58 +00:00
// TypeError: (131-301): Contract "B" should be marked as abstract.
// TypeError: (250-254): Explicit type conversion not allowed from "string memory" to "contract A".