Skip to content

Commit

Permalink
Fix tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron1011 committed Mar 4, 2020
1 parent 37c2c38 commit 66b152c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/test/ui/if-attrs/gate-whole-expr.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// run-pass

fn main() {
let x = 1;
let x = 1;

#[cfg(FALSE)]
if false {
x = 2;
} else if true {
x = 3;
} else {
x = 4;
}
assert_eq!(x, 1);
#[cfg(FALSE)]
if false {
x = 2;
} else if true {
x = 3;
} else {
x = 4;
}
assert_eq!(x, 1);
}

0 comments on commit 66b152c

Please sign in to comment.