solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/513_library_function_without_implementation_private.sol

6 lines
127 B
Solidity
Raw Normal View History

library L {
function f() private;
}
// ----
// TypeError 9231: (16-37): Library functions must be implemented if declared.