diff options
| author | Yuki Okushi <huyuumi.dev+love@gmail.com> | 2023-01-08 17:01:49 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-08 17:01:49 +0900 |
| commit | 6459a51c3fce292b328690fb2837aa166b35fd8a (patch) | |
| tree | ecf70308b10e7ecc9b82d5b692ce08a52836f1f5 /src | |
| parent | 14ce60333d918f7ed86174379791da681cbf408c (diff) | |
| parent | 93c0d8d5d59e096dc2ed545d1eba09f16f0b5874 (diff) | |
| download | rust-6459a51c3fce292b328690fb2837aa166b35fd8a.tar.gz rust-6459a51c3fce292b328690fb2837aa166b35fd8a.zip | |
Rollup merge of #106580 - Ezrashaw:remove-e0313, r=compiler-errors
remove unreachable error code `E0313` Fixes #103742 Makes #103433 redundant Implements removal of `E0313`. I agree with the linked issue that this error code is unreachable but if someone could confirm that would be great, are crater runs done for this sort of thing? Also removed a redundant `// ignore-tidy-filelength` that I found while reading code. cc ``@GuillaumeGomez`` #61137
Diffstat (limited to 'src')
| -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 4b0a62fac83..8d70335a9e7 100644 --- a/src/tools/tidy/src/error_codes.rs +++ b/src/tools/tidy/src/error_codes.rs @@ -31,8 +31,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 { |
