solidity/test/libsolidity/syntaxTests/parsing/constructor_super.sol

11 lines
179 B
Solidity
Raw Normal View History

contract A {
function x() pure internal {}
}
contract B is A {
constructor() public {
// used to trigger warning about using ``this`` in constructor
super.x();
}
}