solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/061_missing_base_constructor_arguments.sol

5 lines
187 B
Solidity
Raw Normal View History

contract A { constructor(uint a) public { } }
contract B is A { }
// ----
// Warning: (25-31): Unused function parameter. Remove or comment out the variable name to silence this warning.