diff options
| author | bors <bors@rust-lang.org> | 2024-08-20 06:56:02 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-20 06:56:02 +0000 |
| commit | 0305cee39a27b8a9a59b5c7ec978f17420c4bee8 (patch) | |
| tree | 0afec8e5357bcdf55433a8f65c4a9f89dbaff4b3 /compiler/rustc_codegen_ssa/src/errors.rs | |
| parent | c74ffd88cb0fc13b1399eb4b75abc8b386386e5a (diff) | |
| parent | bd9e7af0fa66bd81b14586d0e7084e1afdee8424 (diff) | |
| download | rust-0305cee39a27b8a9a59b5c7ec978f17420c4bee8.tar.gz rust-0305cee39a27b8a9a59b5c7ec978f17420c4bee8.zip | |
Auto merge of #3828 - rust-lang:rustup-2024-08-20, r=RalfJung
Automatic Rustup
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/errors.rs')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/errors.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/src/errors.rs b/compiler/rustc_codegen_ssa/src/errors.rs index 94bf0ab34e2..573a8cf7cbe 100644 --- a/compiler/rustc_codegen_ssa/src/errors.rs +++ b/compiler/rustc_codegen_ssa/src/errors.rs @@ -1060,3 +1060,10 @@ pub struct CompilerBuiltinsCannotCall { pub caller: String, pub callee: String, } + +#[derive(Diagnostic)] +#[diag(codegen_ssa_error_creating_import_library)] +pub(crate) struct ErrorCreatingImportLibrary<'a> { + pub lib_name: &'a str, + pub error: String, +} |
