solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/512_library_function_without_implementation_internal.sol
2019-11-05 13:55:31 +01:00

6 lines
123 B
Solidity

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