Skip to content

Commit

Permalink
fix up tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Nov 15, 2020
1 parent 7565809 commit e217fc4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/ui/simd/simd-array-trait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ impl Simd for i32x4 {

#[repr(simd)]
#[derive(Copy, Clone)]
pub struct T<S: Simd>([S::Lane; S::SIZE]); //~ ERROR constant expression depends on a generic parameter
pub struct T<S: Simd>([S::Lane; S::SIZE]);
//~^ ERROR constant expression depends on a generic parameter

extern "platform-intrinsic" {
fn simd_insert<T, E>(x: T, idx: u32, y: E) -> T;
Expand Down

0 comments on commit e217fc4

Please sign in to comment.