diff options
| author | Steven Trotter <stevetrot@gmail.com> | 2024-02-25 16:36:26 +0000 |
|---|---|---|
| committer | Steven Trotter <stevetrot@gmail.com> | 2024-03-15 08:37:32 +0000 |
| commit | df933640571861bcc2854431823cd9d4803b9f88 (patch) | |
| tree | b4997c431f244dec3e1a92cbf36b07dfa767033e /compiler/rustc_errors/src | |
| parent | ee03c286cfdca26fa5b2a4ee40957625d2c826ff (diff) | |
| download | rust-df933640571861bcc2854431823cd9d4803b9f88.tar.gz rust-df933640571861bcc2854431823cd9d4803b9f88.zip | |
Added ability to report on generic argument mismatch better
Needs some checking over and some tests have altered that need sanity checking, but overall this is starting to get somewhere now.
Diffstat (limited to 'compiler/rustc_errors/src')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 723f13dbe8d..b88b5bcd7ea 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -50,7 +50,7 @@ pub use rustc_error_messages::{ fallback_fluent_bundle, fluent_bundle, DelayDm, DiagMessage, FluentBundle, LanguageIdentifier, LazyFallbackBundle, MultiSpan, SpanLabel, SubdiagMessage, }; -pub use rustc_lint_defs::{pluralize, Applicability}; +pub use rustc_lint_defs::{a_or_an, display_list_with_comma_and, pluralize, Applicability}; pub use rustc_span::fatal_error::{FatalError, FatalErrorMarker}; pub use rustc_span::ErrorGuaranteed; pub use snippet::Style; |
