about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMatthew Kelly <matthew.kelly2@gmail.com>2023-02-04 13:01:49 -0500
committerMatthew Kelly <matthew.kelly2@gmail.com>2023-02-06 06:58:30 -0500
commit2bcd4e256ac00db9185bfbe86286e7a8b35b865f (patch)
tree23617bc8e52efec0d1c11de3a342d5a1ba2b70f5 /src
parent0c13c172507f01d921808107d2c4ec37b43b982d (diff)
downloadrust-2bcd4e256ac00db9185bfbe86286e7a8b35b865f.tar.gz
rust-2bcd4e256ac00db9185bfbe86286e7a8b35b865f.zip
Add extended error message for E0523
Adds the extended error documentation for E0523 to indicate that the
error is no longer produced by the compiler.

Update the E0464 documentation to include example code that produces the
error.

Remove the error message E0523 from the compiler and replace it with an
internal compiler error.
Diffstat (limited to 'src')
-rw-r--r--src/tools/tidy/src/error_codes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/error_codes.rs b/src/tools/tidy/src/error_codes.rs
index 6bb4d32f87d..dd2fd1911f2 100644
--- a/src/tools/tidy/src/error_codes.rs
+++ b/src/tools/tidy/src/error_codes.rs
@@ -31,7 +31,7 @@ const IGNORE_DOCTEST_CHECK: &[&str] = &["E0464", "E0570", "E0601", "E0602", "E06
 
 // Error codes that don't yet have a UI test. This list will eventually be removed.
 const IGNORE_UI_TEST_CHECK: &[&str] =
-    &["E0461", "E0465", "E0476", "E0514", "E0523", "E0554", "E0640", "E0717", "E0729"];
+    &["E0461", "E0465", "E0476", "E0514", "E0554", "E0640", "E0717", "E0729"];
 
 macro_rules! verbose_print {
     ($verbose:expr, $($fmt:tt)*) => {