diff options
| author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2022-02-22 00:04:17 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2022-02-22 00:16:57 +0100 |
| commit | a1d8ce46da103ffa6b96a80cc543ed4e447be917 (patch) | |
| tree | ac7620a91a2bb0475b65d8b6763a9e1491208ec9 /src/tools/tidy | |
| parent | b8bd9978e13952206645dc74677abffa36790b9a (diff) | |
| download | rust-a1d8ce46da103ffa6b96a80cc543ed4e447be917.tar.gz rust-a1d8ce46da103ffa6b96a80cc543ed4e447be917.zip | |
chalk: add known-bug test that was previously ICEing.
Diffstat (limited to 'src/tools/tidy')
| -rw-r--r-- | src/tools/tidy/src/error_codes_check.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/tidy/src/error_codes_check.rs b/src/tools/tidy/src/error_codes_check.rs index 2a23d72edc0..f6be550283a 100644 --- a/src/tools/tidy/src/error_codes_check.rs +++ b/src/tools/tidy/src/error_codes_check.rs @@ -10,8 +10,8 @@ use regex::Regex; // A few of those error codes can't be tested but all the others can and *should* be tested! const EXEMPTED_FROM_TEST: &[&str] = &[ - "E0279", "E0280", "E0313", "E0377", "E0461", "E0462", "E0465", "E0476", "E0514", "E0519", - "E0523", "E0554", "E0640", "E0717", "E0729", + "E0279", "E0313", "E0377", "E0461", "E0462", "E0465", "E0476", "E0514", "E0519", "E0523", + "E0554", "E0640", "E0717", "E0729", ]; // Some error codes don't have any tests apparently... |
