-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spurious dead_code warning #11224
Labels
A-lints
Area: Lints (warnings about flaws in source code) such as unused_mut.
Comments
cc @ktt3ja |
Minimized test case: #[crate_type = "lib"];
mod inner {
pub trait Trait {
fn f(&self) { f(); }
}
impl Trait for int {}
fn f() {}
}
pub fn foo() {
let a = &1 as &inner::Trait;
a.f();
} |
Thanks for the test case. I'll work on it tomorrow. |
I have a fix for this which also fixes on program in #11225, still working on the second program. |
I fixed this by checking the method source when a provided method is used. Since you have already fixed it, I'll leave it to you to decide whether it should be included. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rust is telling us that a method is not being called, but we're pretty sure that it is. There is no warning any other methods that call into it, and we believe the program would not work if this method was indeed not being called. :P
To reproduce, check out our protobuf library at the specific SHA here: https://github.com/tildeio/buffoon/tree/a6793623c496e83d578866e7f7ea34ae22370f96
Then compile the protobuf library by running:
cd src rustc --rlib buffoon/lib.rs
(You can also just type
rake
from the top-level directory if you have Ruby installed.)This is the error message we're getting:
This function gets called from
src/buffoon/output_stream.rs:66
, which, as you can see, does not get a dead code warning.The text was updated successfully, but these errors were encountered: