diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-10-11 23:45:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-11 23:45:50 +0200 |
| commit | 57504aafe8ade9964df8600249672dbab45dc47f (patch) | |
| tree | ed531048827ae1b3ffb338e5f99daddc1e2f9125 /src | |
| parent | fde2412b23e98b58788de52492bea9d53ddf6afd (diff) | |
| parent | 0fde6f672f91333f79c867ed9daee7350e4ec382 (diff) | |
| download | rust-57504aafe8ade9964df8600249672dbab45dc47f.tar.gz rust-57504aafe8ade9964df8600249672dbab45dc47f.zip | |
Rollup merge of #89710 - sireliah:e0482, r=GuillaumeGomez
Add long explanation for error E0482 This is longer explanation for error E0482 in the #61137. Please take a look and leave some feedback!
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/tidy/src/error_codes_check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/error_codes_check.rs b/src/tools/tidy/src/error_codes_check.rs index 53c75a46339..ce169867b7b 100644 --- a/src/tools/tidy/src/error_codes_check.rs +++ b/src/tools/tidy/src/error_codes_check.rs @@ -11,7 +11,7 @@ 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] = &[ "E0227", "E0279", "E0280", "E0313", "E0377", "E0461", "E0462", "E0464", "E0465", "E0476", - "E0482", "E0514", "E0519", "E0523", "E0554", "E0640", "E0717", "E0729", + "E0514", "E0519", "E0523", "E0554", "E0640", "E0717", "E0729", ]; // Some error codes don't have any tests apparently... |
