diff options
| author | bors <bors@rust-lang.org> | 2023-02-07 17:19:47 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-02-07 17:19:47 +0000 |
| commit | bd39bbb4bb92df439bf6d85470e296cc6a47ffbd (patch) | |
| tree | 85aea0de5df7a2c14f4c66e00891ae14a356d966 /src/tools | |
| parent | 5dd0e1b7ae7bcddce28658487602e8a077737a3e (diff) | |
| parent | 0e3af6af4708b38065688c6bc4462a916083aff7 (diff) | |
| download | rust-bd39bbb4bb92df439bf6d85470e296cc6a47ffbd.tar.gz rust-bd39bbb4bb92df439bf6d85470e296cc6a47ffbd.zip | |
Auto merge of #107767 - matthiaskrgr:rollup-9m1qfso, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - #100599 (Add compiler error E0523 long description and test) - #107471 (rustdoc: do not include empty default-settings tag in HTML) - #107555 (Modify existing bounds if they exist) - #107662 (Turn projections into copies in CopyProp.) - #107695 (Add test for Future inflating arg size to 3x ) - #107700 (Run the tools builder on all PRs) - #107706 (Mark 'atomic_mut_ptr' methods const) - #107709 (Fix problem noticed in PR106859 with char -> u8 suggestion) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/tools')
| -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 6bb4d32f87d..dd2fd1911f2 100644 --- a/src/tools/tidy/src/error_codes.rs +++ b/src/tools/tidy/src/error_codes.rs @@ -31,7 +31,7 @@ const IGNORE_DOCTEST_CHECK: &[&str] = &["E0464", "E0570", "E0601", "E0602", "E06 // 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", "E0514", "E0523", "E0554", "E0640", "E0717", "E0729"]; + &["E0461", "E0465", "E0476", "E0514", "E0554", "E0640", "E0717", "E0729"]; macro_rules! verbose_print { ($verbose:expr, $($fmt:tt)*) => { |
