aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/inheritance/base_arguments_no_parentheses.sol
blob: 24cca8f0bd8b815327c57aa65be1ed234dbe863b (plain) (blame)
1
2
3
4
5
contract Base {
  constructor(uint) public {}
}
contract Derived is Base(2) { }
contract Derived2 is Base, Derived {}