library L {
function f(bytes a, bytes b, uint c) returns (bool) {
}
function f(bytes a, bytes b, uint c, bytes d, bytes e) returns (bool) {
return f(a, b, c);
}
}
contract C {
function f() returns (bool) {
bytes memory tmp;
return L.f(tmp, tmp, 1, tmp);
}
}
overload.sol:12:16: Error: Member "f" is not available in type(library L) outside of storage.
return L.f(tmp, tmp, 1, tmp);
^-^