mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
61e280863f
And added `branches_sharing_code` PF note to lint doc for `rust-clippy#7452`
28 lines
487 B
Rust
28 lines
487 B
Rust
#![allow(dead_code)]
|
|
#![deny(clippy::if_same_then_else, clippy::branches_sharing_code)]
|
|
|
|
// ##################################
|
|
// # Issue clippy#7369
|
|
// ##################################
|
|
#[derive(Debug)]
|
|
pub struct FooBar {
|
|
foo: Vec<u32>,
|
|
}
|
|
|
|
impl FooBar {
|
|
pub fn bar(&mut self) {
|
|
if true {
|
|
self.foo.pop();
|
|
} else {
|
|
self.baz();
|
|
|
|
self.foo.pop();
|
|
|
|
self.baz()
|
|
}
|
|
}
|
|
|
|
fn baz(&mut self) {}
|
|
}
|
|
|
|
fn main() {}
|