We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#[must_use] struct MU; fn a() -> (u8, MU) { (0, MU) } pub fn main() { a(); // does not warn a().1; // warns a().0; // does not warn }
I believe it should warn in all three cases.