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

6 lines
123 B
Solidity
Raw Normal View History

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