]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_typeck/src/errors.rs
Auto merge of #94072 - matthiaskrgr:rollup-7uu2286, r=matthiaskrgr
[rust.git] / compiler / rustc_typeck / src / errors.rs
index 1e6a240b2f86d857ce8761f7421775eca0287837..47077779616c012ae8a257213c829a37136e3390 100644 (file)
@@ -121,14 +121,6 @@ pub struct AssocTypeBindingNotAllowed {
     pub span: Span,
 }
 
-#[derive(SessionDiagnostic)]
-#[error = "E0439"]
-pub struct SimdShuffleMissingLength {
-    #[message = "invalid `simd_shuffle`, needs length: `{name}`"]
-    pub span: Span,
-    pub name: Symbol,
-}
-
 #[derive(SessionDiagnostic)]
 #[error = "E0436"]
 pub struct FunctionalRecordUpdateOnNonStruct {