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

5 lines
138 B
Solidity
Raw Normal View History

2020-06-23 12:14:24 +00:00
contract A { constructor(uint a) { } }
contract B is A { }
// ----
2020-06-23 12:14:24 +00:00
// TypeError 3656: (39-58): Contract "B" should be marked as abstract.