]> git.lizzy.rs Git - rust.git/commitdiff
Update references to old snapshot
authorAaron Turon <aturon@mozilla.com>
Wed, 7 Jan 2015 20:14:59 +0000 (12:14 -0800)
committerAaron Turon <aturon@mozilla.com>
Wed, 7 Jan 2015 20:14:59 +0000 (12:14 -0800)
src/librustc_typeck/check/_match.rs
src/test/compile-fail/mut-pattern-mismatched.rs

index d9829fd14168c5fc48d82649a8e2b3217f3e13b6..4d3715afddf0faa387a8b6263a01219d5d95319d 100644 (file)
@@ -195,7 +195,7 @@ pub fn check_pat<'a, 'tcx>(pcx: &pat_ctxt<'a, 'tcx>,
         ast::PatRegion(ref inner, mutbl) => {
             let inner_ty = fcx.infcx().next_ty_var();
 
-            // SNAP 340ac04 remove this `if`-`else` entirely after next snapshot
+            // SNAP 9e4e524 remove this `if`-`else` entirely after next snapshot
             let mutbl = if mutbl == ast::MutImmutable {
                 ty::deref(fcx.infcx().shallow_resolve(expected), true)
                    .map(|mt| mt.mutbl).unwrap_or(ast::MutImmutable)
index 443be7d7b69a5b30b4d81417ecbeae341d8c33fa..f945308b92a6863b72f838e42483da680ba11dcc 100644 (file)
@@ -13,7 +13,7 @@ fn main() {
 
     // (separate lines to ensure the spans are accurate)
 
-    // SNAP 340ac04 uncomment this after the next snapshot
+    // SNAP 9e4e524 uncomment this after the next snapshot
     // NOTE(stage0) just in case tidy doesn't check snap's in tests
     // let &_ // ~ ERROR expected `&mut isize`, found `&_`
     //    = foo;