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

6 lines
122 B
Solidity
Raw Normal View History

library L {
function f() private;
}
// ----
2019-11-04 13:12:58 +00:00
// TypeError: (16-37): Library functions must be implemented if declared.