diff options
| author | Lukas Markeffsky <@> | 2023-12-23 13:59:10 +0100 |
|---|---|---|
| committer | Lukas Markeffsky <@> | 2023-12-23 13:59:10 +0100 |
| commit | 49103dc553990e93b72a86183e14697c97eb5b2c (patch) | |
| tree | 3fe8aa7a06c5ca10a320f2bf2e8e6906dbe9ff4d /src | |
| parent | c03d978a4bcb7c01d8cdf80bd7600b27e2d21588 (diff) | |
move rustc_outlives test code from query to dedicated function
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/tidy/src/error_codes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/error_codes.rs b/src/tools/tidy/src/error_codes.rs index 3e67bac499b..094efa981d3 100644 --- a/src/tools/tidy/src/error_codes.rs +++ b/src/tools/tidy/src/error_codes.rs @@ -27,7 +27,7 @@ const ERROR_DOCS_PATH: &str = "compiler/rustc_error_codes/src/error_codes/"; const ERROR_TESTS_PATH: &str = "tests/ui/error-codes/"; // Error codes that (for some reason) can't have a doctest in their explanation. Error codes are still expected to provide a code example, even if untested. -const IGNORE_DOCTEST_CHECK: &[&str] = &["E0464", "E0570", "E0601", "E0602", "E0640", "E0717"]; +const IGNORE_DOCTEST_CHECK: &[&str] = &["E0464", "E0570", "E0601", "E0602", "E0717"]; // Error codes that don't yet have a UI test. This list will eventually be removed. const IGNORE_UI_TEST_CHECK: &[&str] = |
