Skip to content

Commit

Permalink
Merge pull request #759 from RalfJung/rustup
Browse files Browse the repository at this point in the history
rustup for ... deprecation
  • Loading branch information
RalfJung committed Jun 1, 2019
2 parents ec629cc + dafd2e7 commit 0acfd32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c28084ac16af4ab594b6860958df140e7c876a13
8b40a188cee5bef97526dfc271afbd2a98008183
10 changes: 5 additions & 5 deletions tests/run-pass/ints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ fn match_int() -> i16 {
fn match_int_range() -> i64 {
let n = 42;
match n {
0...9 => 0,
10...19 => 1,
20...29 => 2,
30...39 => 3,
40...49 => 4,
0..=9 => 0,
10..=19 => 1,
20..=29 => 2,
30..=39 => 3,
40..=42 => 4,
_ => 5,
}
}
Expand Down

0 comments on commit 0acfd32

Please sign in to comment.