Skip to content

Commit

Permalink
Update compiler error E0076 to use new error format
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiQmar committed Aug 30, 2016
1 parent 6b74503 commit d3a6ea5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/librustc_typeck/check/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,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 {
Expand Down
4 changes: 3 additions & 1 deletion src/test/compile-fail/E0076.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
}

0 comments on commit d3a6ea5

Please sign in to comment.