forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Changes: ```` Rustup to rust-lang#69506 Revive rls integration test use question mark operator Add regression test Use `try_eval_usize` over `eval_usize` Add path for display trait Use lang items instead of get_trait_def_id where possible Update stderr Don't lint debug formatting in debug impl Whitelist unused attribute for use items. add test for rust-lang#5238 ````
- Loading branch information
1 parent
4d71c16
commit a7724c7
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule clippy
updated
21 files
+1 −2 | .github/workflows/clippy_bors.yml | |
+1 −0 | clippy_lints/src/attrs.rs | |
+1 −1 | clippy_lints/src/consts.rs | |
+2 −2 | clippy_lints/src/doc.rs | |
+5 −1 | clippy_lints/src/indexing_slicing.rs | |
+1 −2 | clippy_lints/src/inherent_to_string.rs | |
+1 −1 | clippy_lints/src/lib.rs | |
+7 −1 | clippy_lints/src/methods/mod.rs | |
+1 −1 | clippy_lints/src/neg_cmp_op_on_partial_ord.rs | |
+1 −2 | clippy_lints/src/utils/paths.rs | |
+156 −120 | clippy_lints/src/write.rs | |
+1 −1 | tests/ui/author/blocks.rs | |
+1 −4 | tests/ui/author/blocks.stdout | |
+18 −0 | tests/ui/crashes/ice-5223.rs | |
+9 −0 | tests/ui/crashes/ice-5238.rs | |
+1 −7 | tests/ui/print.stderr | |
+1 −1 | tests/ui/swap.fixed | |
+1 −1 | tests/ui/swap.rs | |
+4 −0 | tests/ui/useless_attribute.fixed | |
+4 −0 | tests/ui/useless_attribute.rs | |
+1 −1 | tests/ui/useless_attribute.stderr |