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

6 lines
130 B
Solidity
Raw Normal View History

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