about summary refs log tree commit diff
path: root/compiler/rustc_errors/src
diff options
context:
space:
mode:
authorSteven Trotter <stevetrot@gmail.com>2024-02-25 16:36:26 +0000
committerSteven Trotter <stevetrot@gmail.com>2024-03-15 08:37:32 +0000
commitdf933640571861bcc2854431823cd9d4803b9f88 (patch)
treeb4997c431f244dec3e1a92cbf36b07dfa767033e /compiler/rustc_errors/src
parentee03c286cfdca26fa5b2a4ee40957625d2c826ff (diff)
downloadrust-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.rs2
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;