If the function you trying to keep is in non-pub module, it will be removed.
Maybe you could move it out of private module: <https://rust.godbolt.org/z/PYPbG8>.
There's also an `#[used]`[1] attribute, but only for static items.
If your use case is special, consider open a feature request in
Rust repo.
Can we use `pub` to make it public and not to be removed ?