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

7 lines
175 B
Solidity
Raw Normal View History

2018-04-17 09:39:40 +00:00
library Lib {
constructor();
}
// ----
// TypeError: (15-29): Constructor cannot be defined in libraries.
// TypeError: (15-29): Constructor must be implemented if declared.