Why do i ask this? I've been trying to solve this for hours.
Problem version 1:
Warning: Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.function TokenERC20(
*/
function TokenERC20(
uint256 initialSupply,
string tokenName,
string tokenSymbol
Version 2
browser/Test.sol:187:6: Warning: Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
/* Initializes contract with initial supply tokens to the creator of the contract */
function MyAdvancedToken(
uint256 initialSupply,
string tokenName,
string tokenSymbol
) TokenERC20(initialSupply, tokenName, tokenSymbol) public {}

