about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJacob <jacob@yola.com>2016-08-16 22:21:31 -0700
committerJacob <jacob@yola.com>2016-08-16 22:21:31 -0700
commit7675e4b514f9ad3095ad830488861777cfd6c198 (patch)
tree800eac09e55b114b4ebd632cb9aef07e7a255f47
parent197be89f367d1240d5f9cd9c4efd77812775354e (diff)
downloadrust-7675e4b514f9ad3095ad830488861777cfd6c198.tar.gz
rust-7675e4b514f9ad3095ad830488861777cfd6c198.zip
Update E0009 to new format
-rw-r--r--src/librustc_const_eval/check_match.rs9
-rw-r--r--src/test/compile-fail/E0009.rs5
2 files changed, 9 insertions, 5 deletions
diff --git a/src/librustc_const_eval/check_match.rs b/src/librustc_const_eval/check_match.rs
index 20673dc1e18..a85fd896f0f 100644
--- a/src/librustc_const_eval/check_match.rs
+++ b/src/librustc_const_eval/check_match.rs
@@ -1120,10 +1120,11 @@ fn check_legality_of_move_bindings(cx: &MatchCheckCtxt,
                 .span_label(p.span, &format!("moves value into pattern guard"))
                 .emit();
         } else if by_ref_span.is_some() {
-            let mut err = struct_span_err!(cx.tcx.sess, p.span, E0009,
-                                           "cannot bind by-move and by-ref in the same pattern");
-            span_note!(&mut err, by_ref_span.unwrap(), "by-ref binding occurs here");
-            err.emit();
+            struct_span_err!(cx.tcx.sess, p.span, E0009,
+                            "cannot bind by-move and by-ref in the same pattern")
+                    .span_label(p.span, &format!("by-move pattern here"))
+                    .span_label(by_ref_span.unwrap(), &format!("both by-ref and by-move used"))
+                    .emit();
         }
     };
 
diff --git a/src/test/compile-fail/E0009.rs b/src/test/compile-fail/E0009.rs
index 51f71ea10c9..4ce3b72e449 100644
--- a/src/test/compile-fail/E0009.rs
+++ b/src/test/compile-fail/E0009.rs
@@ -12,7 +12,10 @@ fn main() {
     struct X { x: (), }
     let x = Some((X { x: () }, X { x: () }));
     match x {
-        Some((y, ref z)) => {}, //~ ERROR E0009
+        Some((y, ref z)) => {}, 
+        //~^ ERROR E0009
+        //~| NOTE by-move pattern here
+        //~| NOTE both by-ref and by-move used
         None => panic!()
     }
 }