contract Parent {
string private name;
constructor(string memory _name) {
name = _name;
}
function getName() public view virtual returns (string memory) {
return name;
}
}
// fixed
contract Child is Parent("The Beatles") {
function getName() public view override returns (string memory) {
return super.getName();
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter