]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #36050 - abhiQmar:e0076-formatting, r=jonathandturner
authorJonathan Turner <jonathandturner@users.noreply.github.com>
Wed, 31 Aug 2016 13:29:09 +0000 (06:29 -0700)
committerGitHub <noreply@github.com>
Wed, 31 Aug 2016 13:29:09 +0000 (06:29 -0700)
Update compiler error E0076 to use new error format

Fixes #35221 part of #35233

r? @jonathandturner

src/librustc_typeck/check/mod.rs
src/test/compile-fail/E0076.rs

index ddb4d7c7012a0751a4e8dfe03d17d62f520aa6cd..70e90980e1d8da37ddd39e84f2e5de100c8f4b94 100644 (file)
@@ -1204,7 +1204,9 @@ pub fn check_simd<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, sp: Span, id: ast::Node
             }
             let e = fields[0].ty(tcx, substs);
             if !fields.iter().all(|f| f.ty(tcx, substs) == e) {
-                span_err!(tcx.sess, sp, E0076, "SIMD vector should be homogeneous");
+                struct_span_err!(tcx.sess, sp, E0076, "SIMD vector should be homogeneous")
+                                .span_label(sp, &format!("SIMD elements must have the same type"))
+                                .emit();
                 return;
             }
             match e.sty {
index b0f02a03e00518c71850695e0a1e289aa36b4083..c31dc62eb666bc1b5961153eee5fa5cc98f245f0 100644 (file)
@@ -11,7 +11,9 @@
 #![feature(repr_simd)]
 
 #[repr(simd)]
-struct Bad(u16, u32, u32); //~ ERROR E0076
+struct Bad(u16, u32, u32);
+//~^ ERROR E0076
+//~| NOTE SIMD elements must have the same type
 
 fn main() {
 }