solidity/test/libsolidity/syntaxTests/parsing/constructor_super.sol
2020-07-07 12:16:18 +02:00

11 lines
172 B
Solidity

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