Skip to content

Commit e217fc4

Browse files
committed
fix up tidy
1 parent 7565809 commit e217fc4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/ui/simd/simd-array-trait.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ impl Simd for i32x4 {
2020

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

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

0 commit comments

Comments
 (0)