aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/061_missing_base_constructor_arguments.sol
blob: 8ebb46aa274ee8a614c532bf12eb959ee1b4b78d (plain) (blame)
1
2
3
4
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.