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.
|