Skip to content

Commit 321d9dd

Browse files
committed
Update references to old snapshot
1 parent 7deb9ab commit 321d9dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/librustc_typeck/check/_match.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ pub fn check_pat<'a, 'tcx>(pcx: &pat_ctxt<'a, 'tcx>,
195195
ast::PatRegion(ref inner, mutbl) => {
196196
let inner_ty = fcx.infcx().next_ty_var();
197197

198-
// SNAP 340ac04 remove this `if`-`else` entirely after next snapshot
198+
// SNAP 9e4e524 remove this `if`-`else` entirely after next snapshot
199199
let mutbl = if mutbl == ast::MutImmutable {
200200
ty::deref(fcx.infcx().shallow_resolve(expected), true)
201201
.map(|mt| mt.mutbl).unwrap_or(ast::MutImmutable)

src/test/compile-fail/mut-pattern-mismatched.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn main() {
1313

1414
// (separate lines to ensure the spans are accurate)
1515

16-
// SNAP 340ac04 uncomment this after the next snapshot
16+
// SNAP 9e4e524 uncomment this after the next snapshot
1717
// NOTE(stage0) just in case tidy doesn't check snap's in tests
1818
// let &_ // ~ ERROR expected `&mut isize`, found `&_`
1919
// = foo;

0 commit comments

Comments
 (0)