error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:31:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         Foo { bar: 42 };
LL | |         0..10;
...  |
LL | |         foo();
LL | |     }
   | |_____^
   |
   = note: `-D clippy::if-same-then-else` implied by `-D warnings`
note: same as this
  --> $DIR/if_same_then_else.rs:23:13
   |
LL |       if true {
   |  _____________^
LL | |         Foo { bar: 42 };
LL | |         0..10;
LL | |         ..;
...  |
LL | |         foo();
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:69:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         0.0
LL | |     };
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:67:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         0.0
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:76:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         -0.0
LL | |     };
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:74:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         -0.0
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:92:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         42
LL | |     };
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:90:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         42
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:106:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         for _ in &[42] {
LL | |             let foo: &Option<_> = &Some::<u8>(42);
...  |
LL | |         }
LL | |     }
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:97:13
   |
LL |       if true {
   |  _____________^
LL | |         for _ in &[42] {
LL | |             let foo: &Option<_> = &Some::<u8>(42);
LL | |             if true {
...  |
LL | |         }
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:125:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         let bar = if true { 42 } else { 43 };
LL | |
...  |
LL | |         bar + 1;
LL | |     }
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:118:13
   |
LL |       if true {
   |  _____________^
LL | |         let bar = if true { 42 } else { 43 };
LL | |
LL | |         while foo() {
...  |
LL | |         bar + 1;
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:155:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         if let Some(a) = Some(42) {}
LL | |     }
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:153:13
   |
LL |       if true {
   |  _____________^
LL | |         if let Some(a) = Some(42) {}
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:162:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         if let (1, .., 3) = (1, 2, 3) {}
LL | |     }
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:160:13
   |
LL |       if true {
   |  _____________^
LL | |         if let (1, .., 3) = (1, 2, 3) {}
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:212:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         std::f32::NAN
LL | |     };
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:210:21
   |
LL |       let _ = if true {
   |  _____________________^
LL | |         std::f32::NAN
LL | |     } else {
   | |_____^

error: this `if` has identical blocks
  --> $DIR/if_same_then_else.rs:219:12
   |
LL |       } else {
   |  ____________^
LL | |         //~ ERROR same body as `if` block
LL | |         try!(Ok("foo"));
LL | |     }
   | |_____^
   |
note: same as this
  --> $DIR/if_same_then_else.rs:217:13
   |
LL |       if true {
   |  _____________^
LL | |         try!(Ok("foo"));
LL | |     } else {
   | |_____^

error: aborting due to 10 previous errors