aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inheritance/disallow_modifier_style_without_parentheses.sol
blob: 6cf68d2aa1545ee35d07eed0dfec28bffc57d2a0 (plain) (blame)
1
2
3
4
contract A { constructor() public { } }
contract B is A { constructor() A public {  } }
// ----
// Warning: (72-73): Modifier-style base constructor call without arguments.