mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8 lines
329 B
Solidity
8 lines
329 B
Solidity
library Lib {
|
|
function Lib() public;
|
|
}
|
|
// ----
|
|
// Warning: (15-37): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
|
|
// TypeError: (15-37): Constructor cannot be defined in libraries.
|
|
// TypeError: (15-37): Constructor must be implemented if declared.
|