diff options
| author | Ezra Shaw <ezrasure@outlook.com> | 2023-01-11 22:46:14 +1300 |
|---|---|---|
| committer | Ezra Shaw <ezrasure@outlook.com> | 2023-01-12 14:15:21 +1300 |
| commit | 02005e9f22bf06e74c3ed6ce56be112d7366bd15 (patch) | |
| tree | f3c593effd8bb4f1fa3c0b85f7a0cfe8689fc6a0 /src/tools/tidy | |
| parent | 0442fbabe24ec43636a80ad1f40a0ad92a2e38df (diff) | |
| download | rust-02005e9f22bf06e74c3ed6ce56be112d7366bd15.tar.gz rust-02005e9f22bf06e74c3ed6ce56be112d7366bd15.zip | |
remove unreachable error code `E0490`
Diffstat (limited to 'src/tools/tidy')
| -rw-r--r-- | src/tools/tidy/src/error_codes.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tools/tidy/src/error_codes.rs b/src/tools/tidy/src/error_codes.rs index 9aacc07e0ab..8b44a09fdf0 100644 --- a/src/tools/tidy/src/error_codes.rs +++ b/src/tools/tidy/src/error_codes.rs @@ -31,10 +31,8 @@ const IGNORE_DOCTEST_CHECK: &[&str] = &["E0208", "E0464", "E0570", "E0601", "E0602", "E0640", "E0717"]; // 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", "E0490", "E0514", "E0523", "E0554", "E0640", "E0717", "E0729", - "E0789", -]; +const IGNORE_UI_TEST_CHECK: &[&str] = + &["E0461", "E0465", "E0476", "E0514", "E0523", "E0554", "E0640", "E0717", "E0729", "E0789"]; macro_rules! verbose_print { ($verbose:expr, $($fmt:tt)*) => { |
