aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/525_reject_interface_constructors.sol
blob: ad08eca62de8be1d45ebc93febbb3342b978f9c4 (plain) (blame)
1
2
3
4
interface I {}
contract C is I(2) {}
// ----
// TypeError: (29-33): Wrong argument count for constructor call: 1 arguments given but expected 0. Remove parentheses if you do not want to provide arguments here.