solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/512_library_function_without_implementation_internal.sol

6 lines
131 B
Solidity
Raw Normal View History

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