diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-02-07 17:57:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-07 17:57:13 +0100 |
| commit | 6d225bb0804e333aa411acce45de4230845bcf2b (patch) | |
| tree | 8d469606ef687244fbedfefe21193c85464641f5 /src | |
| parent | e4dd9edb76a34ecbca539967f9662b8c0cc9c7fb (diff) | |
| parent | 2bcd4e256ac00db9185bfbe86286e7a8b35b865f (diff) | |
| download | rust-6d225bb0804e333aa411acce45de4230845bcf2b.tar.gz rust-6d225bb0804e333aa411acce45de4230845bcf2b.zip | |
Rollup merge of #100599 - MatthewPeterKelly:add-E0523-description-and-test, r=compiler-errors,GuillaumeGomez
Add compiler error E0523 long description and test This PR is one step towards addressing: https://github.com/rust-lang/rust/issues/61137.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/tidy/src/error_codes.rs | 2 |
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)*) => { |
