1
Fork 0

Port UnknownArchiveKind

This commit is contained in:
SLASHLogin 2022-08-26 19:42:29 +02:00
parent c01546fcd6
commit 33ef16f291
3 changed files with 14 additions and 4 deletions

View file

@ -111,3 +111,9 @@ pub(crate) struct DlltoolFailImportLibrary<'a> {
pub stdout: Cow<'a, str>,
pub stderr: Cow<'a, str>,
}
#[derive(SessionDiagnostic)]
#[diag(codegen_llvm::unknown_archive_kind)]
pub(crate) struct UnknownArchiveKind<'a> {
pub kind: &'a str,
}