aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/constructor/library_constructor_old.sol
blob: 271cc790e5640bcf12bb68950013159ee3a3dade (plain) (blame)
1
2
3
4
5
6
7
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.