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