diff options
| author | Ezra Shaw <ezrasure@outlook.com> | 2023-01-08 14:46:01 +1300 |
|---|---|---|
| committer | Ezra Shaw <ezrasure@outlook.com> | 2023-01-08 14:47:12 +1300 |
| commit | 93c0d8d5d59e096dc2ed545d1eba09f16f0b5874 (patch) | |
| tree | 1b15db9db91603dc1797ef582ef91afa20614573 /src/tools | |
| parent | e5d46a5bdac3f19793297914d4ada432024fbe95 (diff) | |
| download | rust-93c0d8d5d59e096dc2ed545d1eba09f16f0b5874.tar.gz rust-93c0d8d5d59e096dc2ed545d1eba09f16f0b5874.zip | |
remove unreachable error code `E0313`
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/tidy/src/error_codes.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/tidy/src/error_codes.rs b/src/tools/tidy/src/error_codes.rs index fdc9d789905..adc07446741 100644 --- a/src/tools/tidy/src/error_codes.rs +++ b/src/tools/tidy/src/error_codes.rs @@ -33,8 +33,8 @@ const IGNORE_DOCTEST_CHECK: &[&str] = &["E0464", "E0570", "E0601", "E0602"]; // Error codes that don't yet have a UI test. This list will eventually be removed. const IGNORE_UI_TEST_CHECK: &[&str] = &[ - "E0313", "E0461", "E0465", "E0476", "E0490", "E0514", "E0523", "E0554", "E0640", "E0717", - "E0729", "E0789", + "E0461", "E0465", "E0476", "E0490", "E0514", "E0523", "E0554", "E0640", "E0717", "E0729", + "E0789", ]; macro_rules! verbose_print { |
