solidity/test/libsolidity/syntaxTests/constructor/interface_constructor_old.sol

9 lines
393 B
Solidity
Raw Normal View History

2018-04-17 09:39:40 +00:00
interface I {
function I() external;
2018-04-17 09:39:40 +00:00
}
// ----
// Warning: (15-37): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
// TypeError: (15-37): Constructor must be public or internal.
// TypeError: (15-37): Constructor cannot be defined in interfaces.
// TypeError: (15-37): Constructor must be implemented if declared.