solidity/test/libsolidity/syntaxTests/parsing/constructor_super.sol
2021-04-20 17:38:29 +02:00

12 lines
180 B
Solidity

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