contract Parent {
	function theMeaningOfLife() public pure returns (uint256) {
		return 42;
	}
}

contract Child is Parent {

}