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

8 lines
322 B
Solidity
Raw Normal View History

2018-04-17 09:39:40 +00:00
library Lib {
function Lib();
}
// ----
// Warning: (15-30): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
// TypeError: (15-30): Constructor cannot be defined in libraries.
// TypeError: (15-30): Constructor must be implemented if declared.