rust/tests/ui
Catherine Flores 18061e2c42
incompatible_msrv: lint function calls with any argument count (#14216)
The lint for function calls was previously restricted to functions
taking exactly one argument. This was not documented.

Generalizing the lint to an arbitrary number of arguments in the
function call requires special casing some macro expansions from the
standard library. Macros such as `panic!()` or `assert_eq!()` exist
since Rust 1.0.0, but modern stdlib expand those macros into calls to
functions introduced in later Rust versions. While it is desirable to
lint code inside macros, using MSRV-incompatible functions coming from
`core` in macro expansions has been special-cased to not trigger this
lint.

Also, code coming from compiler desugaring may contain function calls
(for example, `a..=b` is now desugared into `RangeInclusive::new(a, b)`.
Those should not be linted either as the compiler is allowed to use
unstable function calls.

Fix #14212

changelog: [`incompatible_msrv`]: lint function calls with any argument
count
2025-03-13 04:11:42 +00:00
..
author Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
auxiliary Merge commit '51d49c1ae2' into clippy-subtree-update 2025-01-28 19:33:54 +01:00
borrow_interior_mutable_const Fix new tests updates 2025-02-15 13:38:42 +01:00
branches_sharing_code Fix new tests updates 2025-02-15 13:38:42 +01:00
checked_unwrap Fix new tests updates 2025-02-15 13:38:42 +01:00
cmp_owned Fix new tests updates 2025-02-15 13:38:42 +01:00
crashes needless_pass_by_value: make verbose suggestion 2025-03-12 13:50:04 +01:00
crate_level_checks Fix new tests updates 2025-02-15 13:38:42 +01:00
dbg_macro Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
declare_interior_mutable_const Fix new tests updates 2025-02-15 13:38:42 +01:00
doc Fix ICE 2025-02-27 10:18:44 +01:00
empty_line_after Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
index_refutable_slice Fix new tests updates 2025-02-15 13:38:42 +01:00
items_after_test_module Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_memcpy Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_const_for_fn Fix new tests updates 2025-02-15 13:38:42 +01:00
mixed_attributes_style ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
needless_bool Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
non_std_lazy_static Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
out_of_bounds_indexing Fix new tests updates 2025-02-15 13:38:42 +01:00
pattern_type_mismatch Fix new tests updates 2025-02-15 13:38:42 +01:00
rc_clone_in_vec_init Fix new tests updates 2025-02-15 13:38:42 +01:00
ref_option Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
should_impl_trait Fix new tests updates 2025-02-15 13:38:42 +01:00
size_of_in_element_count Fix new tests updates 2025-02-15 13:38:42 +01:00
syntax-error-recovery Fix new tests updates 2025-02-15 13:38:42 +01:00
absurd-extreme-comparisons.rs Update UI tests 2025-02-15 13:38:16 +01:00
absurd-extreme-comparisons.stderr Update UI tests 2025-02-15 13:38:16 +01:00
allow_attributes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
allow_attributes.rs Update UI tests 2025-02-15 13:38:16 +01:00
allow_attributes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
allow_attributes_without_reason.rs Update UI tests 2025-02-15 13:38:16 +01:00
allow_attributes_without_reason.stderr Update UI tests 2025-02-15 13:38:16 +01:00
almost_complete_range.fixed Update UI tests 2025-02-15 13:38:16 +01:00
almost_complete_range.rs Update UI tests 2025-02-15 13:38:16 +01:00
almost_complete_range.stderr Update UI tests 2025-02-15 13:38:16 +01:00
approx_const.rs Update UI tests 2025-02-15 13:38:16 +01:00
approx_const.stderr Update UI tests 2025-02-15 13:38:16 +01:00
arc_with_non_send_sync.rs Update UI tests 2025-02-15 13:38:16 +01:00
arc_with_non_send_sync.stderr Update UI tests 2025-02-15 13:38:16 +01:00
arithmetic_side_effects.rs Update UI tests 2025-02-15 13:38:16 +01:00
arithmetic_side_effects.stderr Update UI tests 2025-02-15 13:38:16 +01:00
as_conversions.rs Update UI tests 2025-02-15 13:38:16 +01:00
as_conversions.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
as_pointer_underscore.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
as_pointer_underscore.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
as_pointer_underscore.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
as_ptr_cast_mut.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
as_ptr_cast_mut.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
as_underscore.fixed Update UI tests 2025-02-15 13:38:16 +01:00
as_underscore.rs Update UI tests 2025-02-15 13:38:16 +01:00
as_underscore.stderr Update UI tests 2025-02-15 13:38:16 +01:00
asm_syntax_not_x86.rs ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
asm_syntax_x86.i686.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
asm_syntax_x86.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
asm_syntax_x86.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
asm_syntax_x86.x86_64.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
assertions_on_constants.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
assertions_on_constants.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
assertions_on_result_states.fixed Update UI tests 2025-02-15 13:38:16 +01:00
assertions_on_result_states.rs Update UI tests 2025-02-15 13:38:16 +01:00
assertions_on_result_states.stderr Update UI tests 2025-02-15 13:38:16 +01:00
assign_ops.fixed Update UI tests 2025-02-15 13:38:16 +01:00
assign_ops.rs Update UI tests 2025-02-15 13:38:16 +01:00
assign_ops.stderr Update UI tests 2025-02-15 13:38:16 +01:00
assign_ops2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
assign_ops2.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
assigning_clones.fixed Update UI tests 2025-02-15 13:38:16 +01:00
assigning_clones.rs Update UI tests 2025-02-15 13:38:16 +01:00
assigning_clones.stderr Update UI tests 2025-02-15 13:38:16 +01:00
async_yields_async.fixed Update UI tests 2025-02-15 13:38:16 +01:00
async_yields_async.rs Update UI tests 2025-02-15 13:38:16 +01:00
async_yields_async.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
attrs.rs ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
attrs.stderr ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
author.rs Update UI tests 2025-02-15 13:38:16 +01:00
author.stdout Merge commit 'f712eb5cdc' into clippy-subtree-update 2024-11-07 22:37:01 +01:00
await_holding_lock.rs Merge commit 'b794b8e08c' into clippy-subtree-update 2024-07-11 15:44:03 +02:00
await_holding_lock.stderr Merge commit 'b794b8e08c' into clippy-subtree-update 2024-07-11 15:44:03 +02:00
await_holding_refcell_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
await_holding_refcell_ref.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
bind_instead_of_map.fixed Update UI tests 2025-02-15 13:38:16 +01:00
bind_instead_of_map.rs Update UI tests 2025-02-15 13:38:16 +01:00
bind_instead_of_map.stderr Update UI tests 2025-02-15 13:38:16 +01:00
bind_instead_of_map_multipart.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
bind_instead_of_map_multipart.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
bind_instead_of_map_multipart.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
bit_masks.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
bit_masks.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
blanket_clippy_restriction_lints.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
blanket_clippy_restriction_lints.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
blocks_in_conditions.fixed don't trigger blocks_in_conditions when the condition contains a return 2025-03-08 16:57:06 +09:00
blocks_in_conditions.rs don't trigger blocks_in_conditions when the condition contains a return 2025-03-08 16:57:06 +09:00
blocks_in_conditions.stderr Update UI tests 2025-02-15 13:38:16 +01:00
bool_assert_comparison.fixed Update UI tests 2025-02-15 13:38:16 +01:00
bool_assert_comparison.rs Update UI tests 2025-02-15 13:38:16 +01:00
bool_assert_comparison.stderr Update UI tests 2025-02-15 13:38:16 +01:00
bool_comparison.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
bool_comparison.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
bool_comparison.stderr Update UI tests 2025-02-15 13:38:16 +01:00
bool_to_int_with_if.fixed Update UI tests 2025-02-15 13:38:16 +01:00
bool_to_int_with_if.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
bool_to_int_with_if.stderr Update UI tests 2025-02-15 13:38:16 +01:00
borrow_and_ref_as_ptr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
borrow_and_ref_as_ptr.rs Update UI tests 2025-02-15 13:38:16 +01:00
borrow_and_ref_as_ptr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr.rs Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr_raw_ref.fixed Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr_raw_ref.rs Update UI tests 2025-02-15 13:38:16 +01:00
borrow_as_ptr_raw_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
borrow_box.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
borrow_box.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
borrow_box.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
borrow_deref_ref.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
borrow_deref_ref.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
borrow_deref_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
borrow_deref_ref_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
borrow_deref_ref_unfixable.stderr More sophisticated span trimming 2025-02-21 00:41:17 +00:00
box_collection.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
box_collection.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
box_default.fixed Update UI tests 2025-02-15 13:38:16 +01:00
box_default.rs Update UI tests 2025-02-15 13:38:16 +01:00
box_default.stderr Update UI tests 2025-02-15 13:38:16 +01:00
box_default_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
boxed_local.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
boxed_local.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
builtin_type_shadow.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
builtin_type_shadow.stderr Update UI tests 2025-02-15 13:38:16 +01:00
byte_char_slices.fixed Update UI tests 2025-02-15 13:38:16 +01:00
byte_char_slices.rs Update UI tests 2025-02-15 13:38:16 +01:00
byte_char_slices.stderr Update UI tests 2025-02-15 13:38:16 +01:00
bytecount.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
bytecount.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
bytes_count_to_len.fixed Update UI tests 2025-02-15 13:38:16 +01:00
bytes_count_to_len.rs Update UI tests 2025-02-15 13:38:16 +01:00
bytes_count_to_len.stderr Update UI tests 2025-02-15 13:38:16 +01:00
bytes_nth.fixed Update UI tests 2025-02-15 13:38:16 +01:00
bytes_nth.rs Update UI tests 2025-02-15 13:38:16 +01:00
bytes_nth.stderr Update UI tests 2025-02-15 13:38:16 +01:00
case_sensitive_file_extension_comparisons.fixed Update UI tests 2025-02-15 13:38:16 +01:00
case_sensitive_file_extension_comparisons.rs Update UI tests 2025-02-15 13:38:16 +01:00
case_sensitive_file_extension_comparisons.stderr Update UI tests 2025-02-15 13:38:16 +01:00
cast.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
cast.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
cast_abs_to_unsigned.fixed Update UI tests 2025-02-15 13:38:16 +01:00
cast_abs_to_unsigned.rs Update UI tests 2025-02-15 13:38:16 +01:00
cast_abs_to_unsigned.stderr Update UI tests 2025-02-15 13:38:16 +01:00
cast_alignment.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_alignment.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_enum_constructor.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_enum_constructor.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_lossless_bool.fixed Update UI tests 2025-02-15 13:38:16 +01:00
cast_lossless_bool.rs Update UI tests 2025-02-15 13:38:16 +01:00
cast_lossless_bool.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
cast_lossless_float.fixed Update UI tests 2025-02-15 13:38:16 +01:00
cast_lossless_float.rs Update UI tests 2025-02-15 13:38:16 +01:00
cast_lossless_float.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
cast_lossless_integer.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_lossless_integer.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_lossless_integer.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
cast_nan_to_int.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_nan_to_int.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_raw_slice_pointer_cast.fixed Update UI tests 2025-02-15 13:38:16 +01:00
cast_raw_slice_pointer_cast.rs Update UI tests 2025-02-15 13:38:16 +01:00
cast_raw_slice_pointer_cast.stderr Update UI tests 2025-02-15 13:38:16 +01:00
cast_size.32bit.stderr Rustup: fix 32bit tests 2025-02-20 15:54:12 +01:00
cast_size.64bit.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
cast_size.rs f 2025-02-15 15:41:30 +01:00
cast_slice_different_sizes.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cast_slice_different_sizes.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
cfg_attr_cargo_clippy.fixed Update UI tests 2025-02-15 13:38:16 +01:00
cfg_attr_cargo_clippy.rs Update UI tests 2025-02-15 13:38:16 +01:00
cfg_attr_cargo_clippy.stderr Update UI tests 2025-02-15 13:38:16 +01:00
cfg_attr_rustfmt.fixed Update UI tests 2025-02-15 13:38:16 +01:00
cfg_attr_rustfmt.rs Update UI tests 2025-02-15 13:38:16 +01:00
cfg_attr_rustfmt.stderr Update UI tests 2025-02-15 13:38:16 +01:00
cfg_not_test.rs Update UI tests 2025-02-15 13:38:16 +01:00
cfg_not_test.stderr Update UI tests 2025-02-15 13:38:16 +01:00
char_lit_as_u8.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
char_lit_as_u8.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
char_lit_as_u8_suggestions.fixed Update UI tests 2025-02-15 13:38:16 +01:00
char_lit_as_u8_suggestions.rs Update UI tests 2025-02-15 13:38:16 +01:00
char_lit_as_u8_suggestions.stderr Update UI tests 2025-02-15 13:38:16 +01:00
checked_conversions.fixed Update UI tests 2025-02-15 13:38:16 +01:00
checked_conversions.rs Update UI tests 2025-02-15 13:38:16 +01:00
checked_conversions.stderr Update UI tests 2025-02-15 13:38:16 +01:00
clear_with_drain.fixed Update UI tests 2025-02-15 13:38:16 +01:00
clear_with_drain.rs Update UI tests 2025-02-15 13:38:16 +01:00
clear_with_drain.stderr Update UI tests 2025-02-15 13:38:16 +01:00
clone_on_copy.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
clone_on_copy.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
clone_on_copy.stderr Update UI tests 2025-02-15 13:38:16 +01:00
clone_on_copy_impl.rs Update UI tests 2025-02-15 13:38:16 +01:00
cloned_instead_of_copied.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
cloned_instead_of_copied.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
cloned_instead_of_copied.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
cmp_null.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
cmp_null.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cmp_null.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
cognitive_complexity.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cognitive_complexity.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
cognitive_complexity_attr_used.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
cognitive_complexity_attr_used.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
collapsible_else_if.fixed Update UI tests 2025-02-15 13:38:16 +01:00
collapsible_else_if.rs Update UI tests 2025-02-15 13:38:16 +01:00
collapsible_else_if.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
collapsible_if.fixed Update UI tests 2025-02-15 13:38:16 +01:00
collapsible_if.rs Update UI tests 2025-02-15 13:38:16 +01:00
collapsible_if.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
collapsible_match.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
collapsible_match.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
collapsible_match2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
collapsible_match2.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
collapsible_str_replace.fixed Update UI tests 2025-02-15 13:38:16 +01:00
collapsible_str_replace.rs Update UI tests 2025-02-15 13:38:16 +01:00
collapsible_str_replace.stderr Update UI tests 2025-02-15 13:38:16 +01:00
collection_is_never_read.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
collection_is_never_read.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
comparison_chain.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
comparison_chain.stderr Update UI tests 2025-02-15 13:38:16 +01:00
comparison_to_empty.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
comparison_to_empty.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
comparison_to_empty.stderr Update UI tests 2025-02-15 13:38:16 +01:00
const_comparisons.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
const_comparisons.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
const_is_empty.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
const_is_empty.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
copy_iterator.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
copy_iterator.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
crate_in_macro_def.fixed Update UI tests 2025-02-15 13:38:16 +01:00
crate_in_macro_def.rs Update UI tests 2025-02-15 13:38:16 +01:00
crate_in_macro_def.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
create_dir.fixed Update UI tests 2025-02-15 13:38:16 +01:00
create_dir.rs Update UI tests 2025-02-15 13:38:16 +01:00
create_dir.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
debug_assert_with_mut_call.rs Update UI tests 2025-02-15 13:38:16 +01:00
debug_assert_with_mut_call.stderr Update UI tests 2025-02-15 13:38:16 +01:00
decimal_literal_representation.fixed Update UI tests 2025-02-15 13:38:16 +01:00
decimal_literal_representation.rs Update UI tests 2025-02-15 13:38:16 +01:00
decimal_literal_representation.stderr Update UI tests 2025-02-15 13:38:16 +01:00
def_id_nocore.rs remove support for the #[start] attribute 2025-01-21 06:59:15 -07:00
def_id_nocore.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
default_constructed_unit_structs.fixed Update UI tests 2025-02-15 13:38:16 +01:00
default_constructed_unit_structs.rs Update UI tests 2025-02-15 13:38:16 +01:00
default_constructed_unit_structs.stderr Update UI tests 2025-02-15 13:38:16 +01:00
default_instead_of_iter_empty.fixed Update UI tests 2025-02-15 13:38:16 +01:00
default_instead_of_iter_empty.rs Update UI tests 2025-02-15 13:38:16 +01:00
default_instead_of_iter_empty.stderr Update UI tests 2025-02-15 13:38:16 +01:00
default_instead_of_iter_empty_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
default_instead_of_iter_empty_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
default_instead_of_iter_empty_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
default_numeric_fallback_f64.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
default_numeric_fallback_f64.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
default_numeric_fallback_f64.stderr Update UI tests 2025-02-15 13:38:16 +01:00
default_numeric_fallback_i32.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
default_numeric_fallback_i32.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
default_numeric_fallback_i32.stderr Update UI tests 2025-02-15 13:38:16 +01:00
default_trait_access.fixed Update UI tests 2025-02-15 13:38:16 +01:00
default_trait_access.rs Update UI tests 2025-02-15 13:38:16 +01:00
default_trait_access.stderr Update UI tests 2025-02-15 13:38:16 +01:00
default_union_representation.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
default_union_representation.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
deprecated.rs Deprecate the option_map_or_err_ok lint 2025-01-23 00:28:09 +01:00
deprecated.stderr Deprecate the option_map_or_err_ok lint 2025-01-23 00:28:09 +01:00
deref_addrof.fixed Update UI tests 2025-02-15 13:38:16 +01:00
deref_addrof.rs Update UI tests 2025-02-15 13:38:16 +01:00
deref_addrof.stderr Update UI tests 2025-02-15 13:38:16 +01:00
deref_addrof_double_trigger.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
deref_addrof_double_trigger.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
deref_addrof_macro.rs Update UI tests 2025-02-15 13:38:16 +01:00
deref_by_slicing.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
deref_by_slicing.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
deref_by_slicing.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
derivable_impls.fixed Use MIR body to identify more "default equivalent" calls 2025-02-11 02:59:06 +00:00
derivable_impls.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
derivable_impls.stderr Update UI tests 2025-02-15 13:38:16 +01:00
derive.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
derive.stderr Update UI tests 2025-02-15 13:38:16 +01:00
derive_ord_xor_partial_ord.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
derive_ord_xor_partial_ord.stderr Update UI tests 2025-02-15 13:38:16 +01:00
derive_partial_eq_without_eq.fixed Update UI tests 2025-02-15 13:38:16 +01:00
derive_partial_eq_without_eq.rs Update UI tests 2025-02-15 13:38:16 +01:00
derive_partial_eq_without_eq.stderr Update UI tests 2025-02-15 13:38:16 +01:00
derived_hash_with_manual_eq.rs Update UI tests 2025-02-15 13:38:16 +01:00
derived_hash_with_manual_eq.stderr Update UI tests 2025-02-15 13:38:16 +01:00
disallowed_names.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
disallowed_names.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
disallowed_script_idents.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
disallowed_script_idents.stderr Update UI tests 2025-02-15 13:38:16 +01:00
diverging_sub_expression.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
diverging_sub_expression.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
doc_errors.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
doc_errors.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
doc_link_with_quotes.rs ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
doc_link_with_quotes.stderr ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
doc_unsafe.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
doc_unsafe.stderr Update UI tests 2025-02-15 13:38:16 +01:00
double_comparison.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
double_comparison.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
double_comparison.stderr Update UI tests 2025-02-15 13:38:16 +01:00
double_ended_iterator_last.fixed double_ended_iterator_last: note when drop order is changed 2025-02-19 09:26:39 +01:00
double_ended_iterator_last.rs double_ended_iterator_last: note when drop order is changed 2025-02-19 09:26:39 +01:00
double_ended_iterator_last.stderr double_ended_iterator_last: note when drop order is changed 2025-02-19 09:26:39 +01:00
double_ended_iterator_last_unfixable.rs double_ended_iterator_last: note when drop order is changed 2025-02-19 09:26:39 +01:00
double_ended_iterator_last_unfixable.stderr double_ended_iterator_last: note when drop order is changed 2025-02-19 09:26:39 +01:00
double_must_use.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
double_must_use.stderr Update UI tests 2025-02-15 13:38:16 +01:00
double_parens.rs Update UI tests 2025-02-15 13:38:16 +01:00
double_parens.stderr Update UI tests 2025-02-15 13:38:16 +01:00
drain_collect.fixed Update UI tests 2025-02-15 13:38:16 +01:00
drain_collect.rs Update UI tests 2025-02-15 13:38:16 +01:00
drain_collect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
drain_collect_nostd.fixed Update UI tests 2025-02-15 13:38:16 +01:00
drain_collect_nostd.rs Update UI tests 2025-02-15 13:38:16 +01:00
drain_collect_nostd.stderr Merge commit '51d49c1ae2' into clippy-subtree-update 2025-01-28 19:33:54 +01:00
drop_non_drop.rs Update UI tests 2025-02-15 13:38:16 +01:00
drop_non_drop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
duplicate_underscore_argument.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
duplicate_underscore_argument.stderr Merge commit '7901289135' into clippy-subtree-update 2024-09-24 11:58:04 +02:00
duplicated_attributes.rs Merge commit '7901289135' into clippy-subtree-update 2024-09-24 11:58:04 +02:00
duplicated_attributes.stderr Merge commit 'ca3b393750' into clippy-subtree-update 2024-04-18 17:48:52 +02:00
duration_subsec.fixed Update UI tests 2025-02-15 13:38:16 +01:00
duration_subsec.rs Update UI tests 2025-02-15 13:38:16 +01:00
duration_subsec.stderr Update UI tests 2025-02-15 13:38:16 +01:00
eager_transmute.fixed Update UI tests 2025-02-15 13:38:16 +01:00
eager_transmute.rs Update UI tests 2025-02-15 13:38:16 +01:00
eager_transmute.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
elidable_lifetime_names.fixed Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
elidable_lifetime_names.rs Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
elidable_lifetime_names.stderr Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
else_if_without_else.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
else_if_without_else.stderr Update UI tests 2025-02-15 13:38:16 +01:00
empty_docs.rs Update UI tests 2025-02-15 13:38:16 +01:00
empty_docs.stderr Update UI tests 2025-02-15 13:38:16 +01:00
empty_drop.fixed If suggestion would leave an empty line, delete it 2024-03-01 13:48:20 +00:00
empty_drop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
empty_drop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
empty_enum.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
empty_enum.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
empty_enum_variants_with_brackets.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
empty_enum_variants_with_brackets.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
empty_enum_variants_with_brackets.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
empty_enum_without_never_type.rs Update UI tests 2025-02-15 13:38:16 +01:00
empty_loop.rs Update UI tests 2025-02-15 13:38:16 +01:00
empty_loop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
empty_loop_no_std.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
empty_loop_no_std.stderr remove support for the #[start] attribute 2025-01-21 06:59:15 -07:00
empty_structs_with_brackets.fixed Update UI tests 2025-02-15 13:38:16 +01:00
empty_structs_with_brackets.rs Update UI tests 2025-02-15 13:38:16 +01:00
empty_structs_with_brackets.stderr Update UI tests 2025-02-15 13:38:16 +01:00
endian_bytes.rs Update UI tests 2025-02-15 13:38:16 +01:00
endian_bytes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
entry.fixed fix: map_entry FP inside closure 2025-02-27 21:28:00 +08:00
entry.rs fix: map_entry FP inside closure 2025-02-27 21:28:00 +08:00
entry.stderr Update UI tests 2025-02-15 13:38:16 +01:00
entry_btree.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
entry_btree.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
entry_btree.stderr Update UI tests 2025-02-15 13:38:16 +01:00
entry_unfixable.rs fix: map_entry suggest wrongly when key is not Copy 2025-02-28 23:35:53 +08:00
entry_unfixable.stderr fix: map_entry suggest wrongly when key is not Copy 2025-02-28 23:35:53 +08:00
entry_with_else.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
entry_with_else.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
entry_with_else.stderr Update UI tests 2025-02-15 13:38:16 +01:00
enum_clike_unportable_variant.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
enum_clike_unportable_variant.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
enum_glob_use.fixed Update UI tests 2025-02-15 13:38:16 +01:00
enum_glob_use.rs Update UI tests 2025-02-15 13:38:16 +01:00
enum_glob_use.stderr Update UI tests 2025-02-15 13:38:16 +01:00
enum_variants.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
enum_variants.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
eprint_with_newline.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
eprint_with_newline.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
eprint_with_newline.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
eq_op.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
eq_op.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
eq_op_macros.rs Update UI tests 2025-02-15 13:38:16 +01:00
eq_op_macros.stderr Update UI tests 2025-02-15 13:38:16 +01:00
equatable_if_let.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
equatable_if_let.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
equatable_if_let.stderr Update UI tests 2025-02-15 13:38:16 +01:00
erasing_op.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
erasing_op.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
err_expect.fixed Update UI tests 2025-02-15 13:38:16 +01:00
err_expect.rs Update UI tests 2025-02-15 13:38:16 +01:00
err_expect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
error_impl_error.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
error_impl_error.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
eta.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
eta.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
eta.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
eta_nostd.fixed Update UI tests 2025-02-15 13:38:16 +01:00
eta_nostd.rs Update UI tests 2025-02-15 13:38:16 +01:00
eta_nostd.stderr Merge commit '51d49c1ae2' into clippy-subtree-update 2025-01-28 19:33:54 +01:00
excessive_precision.fixed Update UI tests 2025-02-15 13:38:16 +01:00
excessive_precision.rs Update UI tests 2025-02-15 13:38:16 +01:00
excessive_precision.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
exhaustive_items.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
exhaustive_items.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
exhaustive_items.stderr Update UI tests 2025-02-15 13:38:16 +01:00
exit1.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
exit1.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
exit2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
exit2.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
exit3.rs Update UI tests 2025-02-15 13:38:16 +01:00
expect.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
expect.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
expect_fun_call.fixed Update UI tests 2025-02-15 13:38:16 +01:00
expect_fun_call.rs Update UI tests 2025-02-15 13:38:16 +01:00
expect_fun_call.stderr Update UI tests 2025-02-15 13:38:16 +01:00
expect_tool_lint_rfc_2383.rs Add manual annotations 2025-02-15 13:38:18 +01:00
expect_tool_lint_rfc_2383.stderr Add manual annotations 2025-02-15 13:38:18 +01:00
explicit_auto_deref.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
explicit_auto_deref.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
explicit_auto_deref.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
explicit_counter_loop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
explicit_counter_loop.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
explicit_deref_methods.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
explicit_deref_methods.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
explicit_deref_methods.stderr Update UI tests 2025-02-15 13:38:16 +01:00
explicit_into_iter_loop.fixed Update UI tests 2025-02-15 13:38:16 +01:00
explicit_into_iter_loop.rs Update UI tests 2025-02-15 13:38:16 +01:00
explicit_into_iter_loop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
explicit_iter_loop.fixed Update UI tests 2025-02-15 13:38:16 +01:00
explicit_iter_loop.rs Update UI tests 2025-02-15 13:38:16 +01:00
explicit_iter_loop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
explicit_write.fixed Update UI tests 2025-02-15 13:38:16 +01:00
explicit_write.rs Update UI tests 2025-02-15 13:38:16 +01:00
explicit_write.stderr Update UI tests 2025-02-15 13:38:16 +01:00
extend_with_drain.fixed Update UI tests 2025-02-15 13:38:16 +01:00
extend_with_drain.rs Update UI tests 2025-02-15 13:38:16 +01:00
extend_with_drain.stderr Update UI tests 2025-02-15 13:38:16 +01:00
extra_unused_lifetimes.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
extra_unused_lifetimes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
extra_unused_type_parameters.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
extra_unused_type_parameters.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
extra_unused_type_parameters.stderr Update UI tests 2025-02-15 13:38:16 +01:00
extra_unused_type_parameters_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
extra_unused_type_parameters_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
fallible_impl_from.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
fallible_impl_from.stderr Update UI tests 2025-02-15 13:38:16 +01:00
field_reassign_with_default.rs Update UI tests 2025-02-15 13:38:16 +01:00
field_reassign_with_default.stderr Update UI tests 2025-02-15 13:38:16 +01:00
field_scoped_visibility_modifiers.rs Update UI tests 2025-02-15 13:38:16 +01:00
field_scoped_visibility_modifiers.stderr Update UI tests 2025-02-15 13:38:16 +01:00
filetype_is_file.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
filetype_is_file.stderr Update UI tests 2025-02-15 13:38:16 +01:00
filter_map_bool_then.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
filter_map_bool_then.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
filter_map_bool_then.stderr Update UI tests 2025-02-15 13:38:16 +01:00
filter_map_identity.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
filter_map_identity.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
filter_map_identity.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
filter_map_next.rs Update UI tests 2025-02-15 13:38:16 +01:00
filter_map_next.stderr Update UI tests 2025-02-15 13:38:16 +01:00
filter_map_next_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
filter_map_next_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
filter_map_next_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
find_map.rs Update UI tests 2025-02-15 13:38:16 +01:00
flat_map_identity.fixed Update UI tests 2025-02-15 13:38:16 +01:00
flat_map_identity.rs Update UI tests 2025-02-15 13:38:16 +01:00
flat_map_identity.stderr Update UI tests 2025-02-15 13:38:16 +01:00
flat_map_option.fixed Update UI tests 2025-02-15 13:38:16 +01:00
flat_map_option.rs Update UI tests 2025-02-15 13:38:16 +01:00
flat_map_option.stderr Update UI tests 2025-02-15 13:38:16 +01:00
float_arithmetic.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
float_arithmetic.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
float_cmp.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
float_cmp.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
float_cmp_const.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
float_cmp_const.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
float_equality_without_abs.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
float_equality_without_abs.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
floating_point_abs.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_abs.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_abs.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_arithmetic_nostd.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_exp.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_exp.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_exp.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_hypot.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_hypot.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_hypot.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_log.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_log.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_log.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_logbase.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_logbase.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_logbase.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_mul_add.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_mul_add.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_mul_add.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_powf.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_powf.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_powf.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_powi.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_powi.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_powi.stderr Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_rad.fixed Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_rad.rs Update UI tests 2025-02-15 13:38:16 +01:00
floating_point_rad.stderr Update UI tests 2025-02-15 13:38:16 +01:00
fn_params_excessive_bools.rs Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
fn_params_excessive_bools.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
fn_to_numeric_cast.32bit.stderr Better handle 32bit/64bit-specific ui tests 2025-02-15 15:40:12 +01:00
fn_to_numeric_cast.64bit.stderr Better handle 32bit/64bit-specific ui tests 2025-02-15 15:40:12 +01:00
fn_to_numeric_cast.rs f 2025-02-15 15:41:30 +01:00
fn_to_numeric_cast_any.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
fn_to_numeric_cast_any.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
for_kv_map.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
for_kv_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
for_kv_map.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
forget_non_drop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
forget_non_drop.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
format.fixed Update UI tests 2025-02-15 13:38:16 +01:00
format.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
format.stderr Update UI tests 2025-02-15 13:38:16 +01:00
format_args.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
format_args.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
format_args.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
format_args_unfixable.rs add io_other_error lint 2025-02-21 22:08:31 +01:00
format_args_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
format_collect.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
format_collect.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
format_push_string.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
format_push_string.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
formatting.rs Update UI tests 2025-02-15 13:38:16 +01:00
formatting.stderr Update UI tests 2025-02-15 13:38:16 +01:00
four_forward_slashes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
four_forward_slashes.rs Update UI tests 2025-02-15 13:38:16 +01:00
four_forward_slashes.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
four_forward_slashes_first_line.fixed Update UI tests 2025-02-15 13:38:16 +01:00
four_forward_slashes_first_line.rs Update UI tests 2025-02-15 13:38:16 +01:00
four_forward_slashes_first_line.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
from_iter_instead_of_collect.fixed Update UI tests 2025-02-15 13:38:16 +01:00
from_iter_instead_of_collect.rs Update UI tests 2025-02-15 13:38:16 +01:00
from_iter_instead_of_collect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
from_over_into.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
from_over_into.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
from_over_into.stderr Update UI tests 2025-02-15 13:38:16 +01:00
from_over_into_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
from_over_into_unfixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
from_raw_with_void_ptr.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
from_raw_with_void_ptr.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
from_str_radix_10.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
from_str_radix_10.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
from_str_radix_10.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
functions.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
functions.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
functions_maxlines.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
functions_maxlines.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
future_not_send.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
future_not_send.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
get_first.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
get_first.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
get_first.stderr Update UI tests 2025-02-15 13:38:16 +01:00
get_last_with_len.fixed Update UI tests 2025-02-15 13:38:16 +01:00
get_last_with_len.rs Update UI tests 2025-02-15 13:38:16 +01:00
get_last_with_len.stderr Update UI tests 2025-02-15 13:38:16 +01:00
get_unwrap.fixed Update UI tests 2025-02-15 13:38:16 +01:00
get_unwrap.rs Update UI tests 2025-02-15 13:38:16 +01:00
get_unwrap.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
identity_op.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
identity_op.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
identity_op.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
if_let_mutex.edition2021.stderr Make if_let_mutex test pass on both 2021 and 2024 editions 2025-02-15 13:38:18 +01:00
if_let_mutex.rs Make if_let_mutex test pass on both 2021 and 2024 editions 2025-02-15 13:38:18 +01:00
if_not_else.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
if_not_else.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
if_not_else.stderr Update UI tests 2025-02-15 13:38:16 +01:00
if_not_else_bittest.rs Update UI tests 2025-02-15 13:38:16 +01:00
if_same_then_else.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
if_same_then_else.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
if_same_then_else2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
if_same_then_else2.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
if_then_some_else_none.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
if_then_some_else_none.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
if_then_some_else_none.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
ifs_same_cond.rs comparison_chain: stylepedantic 2025-02-15 16:24:38 +01:00
ifs_same_cond.stderr comparison_chain: stylepedantic 2025-02-15 16:24:38 +01:00
ignored_unit_patterns.fixed Merge commit '3e3715c312' into clippy-subtree-update 2025-02-06 15:00:24 +01:00
ignored_unit_patterns.rs Merge commit '3e3715c312' into clippy-subtree-update 2025-02-06 15:00:24 +01:00
ignored_unit_patterns.stderr Merge commit '3e3715c312' into clippy-subtree-update 2025-02-06 15:00:24 +01:00
impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
impl.stderr Update UI tests 2025-02-15 13:38:16 +01:00
impl_hash_with_borrow_str_and_bytes.rs Merge commit 'f0cdee4a3f' into clippy-subtree-sync 2023-12-01 18:21:58 +01:00
impl_hash_with_borrow_str_and_bytes.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
impl_trait_in_params.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
impl_trait_in_params.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
implicit_clone.fixed Update UI tests 2025-02-15 13:38:16 +01:00
implicit_clone.rs Update UI tests 2025-02-15 13:38:16 +01:00
implicit_clone.stderr Update UI tests 2025-02-15 13:38:16 +01:00
implicit_hasher.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
implicit_hasher.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
implicit_hasher.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
implicit_return.fixed Update UI tests 2025-02-15 13:38:16 +01:00
implicit_return.rs Update UI tests 2025-02-15 13:38:16 +01:00
implicit_return.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
implicit_saturating_add.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
implicit_saturating_add.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
implicit_saturating_add.stderr Update UI tests 2025-02-15 13:38:16 +01:00
implicit_saturating_sub.fixed Extend {implicit,inverted}_saturating_sub to expressions 2025-02-28 23:50:43 +01:00
implicit_saturating_sub.rs Extend {implicit,inverted}_saturating_sub to expressions 2025-02-28 23:50:43 +01:00
implicit_saturating_sub.stderr Extend {implicit,inverted}_saturating_sub to expressions 2025-02-28 23:50:43 +01:00
implied_bounds_in_impls.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
implied_bounds_in_impls.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
implied_bounds_in_impls.stderr Update UI tests 2025-02-15 13:38:16 +01:00
incompatible_msrv.rs incompatible_msrv: lint function calls with any argument count 2025-02-28 23:15:29 +01:00
incompatible_msrv.stderr incompatible_msrv: lint function calls with any argument count 2025-02-28 23:15:29 +01:00
inconsistent_digit_grouping.fixed Update UI tests 2025-02-15 13:38:16 +01:00
inconsistent_digit_grouping.rs Update UI tests 2025-02-15 13:38:16 +01:00
inconsistent_digit_grouping.stderr Update UI tests 2025-02-15 13:38:16 +01:00
inconsistent_struct_constructor.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
inconsistent_struct_constructor.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
inconsistent_struct_constructor.stderr Update UI tests 2025-02-15 13:38:16 +01:00
indexing_slicing_index.rs Update UI tests 2025-02-15 13:38:16 +01:00
indexing_slicing_index.stderr Update UI tests 2025-02-15 13:38:16 +01:00
indexing_slicing_slice.rs Update UI tests 2025-02-15 13:38:16 +01:00
indexing_slicing_slice.stderr Update UI tests 2025-02-15 13:38:16 +01:00
ineffective_open_options.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
ineffective_open_options.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
ineffective_open_options.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
inefficient_to_string.fixed Update UI tests 2025-02-15 13:38:16 +01:00
inefficient_to_string.rs Update UI tests 2025-02-15 13:38:16 +01:00
inefficient_to_string.stderr Update UI tests 2025-02-15 13:38:16 +01:00
infallible_destructuring_match.fixed Merge commit 'a859e5cc1c' into clippyup 2023-12-16 14:12:50 +01:00
infallible_destructuring_match.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
infallible_destructuring_match.stderr Update UI tests 2025-02-15 13:38:16 +01:00
infinite_iter.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
infinite_iter.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
infinite_loop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
infinite_loop.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
infinite_loops.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
infinite_loops.stderr Update UI tests 2025-02-15 13:38:16 +01:00
inherent_to_string.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
inherent_to_string.stderr Update UI tests 2025-02-15 13:38:16 +01:00
init_numbered_fields.fixed Update UI tests 2025-02-15 13:38:16 +01:00
init_numbered_fields.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
init_numbered_fields.stderr Update UI tests 2025-02-15 13:38:16 +01:00
inline_fn_without_body.fixed Update UI tests 2025-02-15 13:38:16 +01:00
inline_fn_without_body.rs Update UI tests 2025-02-15 13:38:16 +01:00
inline_fn_without_body.stderr Update UI tests 2025-02-15 13:38:16 +01:00
inspect_for_each.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
inspect_for_each.stderr Update UI tests 2025-02-15 13:38:16 +01:00
int_plus_one.fixed Update UI tests 2025-02-15 13:38:16 +01:00
int_plus_one.rs Update UI tests 2025-02-15 13:38:16 +01:00
int_plus_one.stderr Update UI tests 2025-02-15 13:38:16 +01:00
integer_division.rs Update UI tests 2025-02-15 13:38:16 +01:00
integer_division.stderr Update UI tests 2025-02-15 13:38:16 +01:00
integer_division_remainder_used.rs Update UI tests 2025-02-15 13:38:16 +01:00
integer_division_remainder_used.stderr Update UI tests 2025-02-15 13:38:16 +01:00
into_iter_on_ref.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
into_iter_on_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
into_iter_on_ref.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
into_iter_without_iter.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
into_iter_without_iter.stderr Update UI tests 2025-02-15 13:38:16 +01:00
invalid_null_ptr_usage.fixed Update UI tests 2025-02-15 13:38:16 +01:00
invalid_null_ptr_usage.rs Update UI tests 2025-02-15 13:38:16 +01:00
invalid_null_ptr_usage.stderr Update UI tests 2025-02-15 13:38:16 +01:00
invalid_null_ptr_usage_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
invalid_null_ptr_usage_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
invalid_null_ptr_usage_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
invalid_upcast_comparisons.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
invalid_upcast_comparisons.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
io_other_error.fixed Walk back to the root context to compute the span 2025-03-04 12:00:38 +01:00
io_other_error.rs Walk back to the root context to compute the span 2025-03-04 12:00:38 +01:00
io_other_error.stderr Walk back to the root context to compute the span 2025-03-04 12:00:38 +01:00
is_digit_ascii_radix.fixed Update UI tests 2025-02-15 13:38:16 +01:00
is_digit_ascii_radix.rs Update UI tests 2025-02-15 13:38:16 +01:00
is_digit_ascii_radix.stderr Update UI tests 2025-02-15 13:38:16 +01:00
issue-3145.rs Merge commit '37f4c1725d' into clippyup 2023-07-02 14:59:02 +02:00
issue-3145.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
issue-7447.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
issue-7447.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
issue-111399.rs Update UI tests 2025-02-15 13:38:16 +01:00
issue_2356.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
issue_2356.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
issue_2356.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
issue_4266.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
issue_4266.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
items_after_statement.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
items_after_statement.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_cloned_collect.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_cloned_collect.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_cloned_collect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_count.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_count.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_count.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_filter_is_ok.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_filter_is_ok.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_filter_is_ok.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_filter_is_some.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_filter_is_some.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_filter_is_some.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_kv_map.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_kv_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_kv_map.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_next_loop.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_next_loop.stderr Merge commit 'b794b8e08c' into clippy-subtree-update 2024-07-11 15:44:03 +02:00
iter_next_slice.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_next_slice.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_next_slice.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_not_returning_iterator.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_not_returning_iterator.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_nth.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_nth.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_nth.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
iter_nth_zero.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_nth_zero.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_nth_zero.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_on_empty_collections.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_on_empty_collections.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_on_empty_collections.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_on_single_items.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_on_single_items.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_on_single_items.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_out_of_bounds.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_out_of_bounds.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_over_hash_type.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_over_hash_type.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_overeager_cloned.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_overeager_cloned.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_overeager_cloned.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_skip_next.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_skip_next.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_skip_next.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_skip_next_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_skip_next_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_skip_zero.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_skip_zero.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_skip_zero.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_with_drain.fixed Update UI tests 2025-02-15 13:38:16 +01:00
iter_with_drain.rs Update UI tests 2025-02-15 13:38:16 +01:00
iter_with_drain.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iter_without_into_iter.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iter_without_into_iter.stderr Update UI tests 2025-02-15 13:38:16 +01:00
iterator_step_by_zero.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
iterator_step_by_zero.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
join_absolute_paths.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
join_absolute_paths.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
large_const_arrays.fixed Update UI tests 2025-02-15 13:38:16 +01:00
large_const_arrays.rs Update UI tests 2025-02-15 13:38:16 +01:00
large_const_arrays.stderr Update UI tests 2025-02-15 13:38:16 +01:00
large_digit_groups.fixed Update UI tests 2025-02-15 13:38:16 +01:00
large_digit_groups.rs Update UI tests 2025-02-15 13:38:16 +01:00
large_digit_groups.stderr Update UI tests 2025-02-15 13:38:16 +01:00
large_enum_variant.32bit.stderr Rustup: fix 32bit tests 2025-02-20 15:54:12 +01:00
large_enum_variant.64bit.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
large_enum_variant.rs Better handle 32bit/64bit-specific ui tests 2025-02-15 15:40:12 +01:00
large_futures.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
large_futures.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
large_futures.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
large_stack_arrays.rs Merge commit 'a109190d70' into clippy-subtree-update 2024-10-18 13:44:06 +02:00
large_stack_arrays.stderr Merge commit 'a109190d70' into clippy-subtree-update 2024-10-18 13:44:06 +02:00
large_stack_frames.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
large_stack_frames.stderr Update UI tests 2025-02-15 13:38:16 +01:00
large_types_passed_by_value.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
large_types_passed_by_value.stderr Update UI tests 2025-02-15 13:38:16 +01:00
legacy_numeric_constants.fixed Update UI tests 2025-02-15 13:38:16 +01:00
legacy_numeric_constants.rs Update UI tests 2025-02-15 13:38:16 +01:00
legacy_numeric_constants.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
legacy_numeric_constants_unfixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
legacy_numeric_constants_unfixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
len_without_is_empty.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
len_without_is_empty.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
len_zero.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
len_zero.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
len_zero.stderr Update UI tests 2025-02-15 13:38:16 +01:00
len_zero_ranges.fixed Update UI tests 2025-02-15 13:38:16 +01:00
len_zero_ranges.rs Update UI tests 2025-02-15 13:38:16 +01:00
len_zero_ranges.stderr Update UI tests 2025-02-15 13:38:16 +01:00
let_and_return.edition2021.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
let_and_return.edition2021.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
let_and_return.edition2024.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
let_and_return.edition2024.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
let_and_return.fixed let_and_return: look for non-static references in expansion as well 2025-02-09 18:18:02 +01:00
let_and_return.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
let_and_return.stderr Merge commit 'c9139bd546' into clippy-subtree-update 2024-05-30 10:49:05 +02:00
let_if_seq.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
let_if_seq.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
let_underscore_future.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
let_underscore_future.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
let_underscore_lock.rs Improve let_underscore_lock 2024-01-12 23:18:58 +01:00
let_underscore_lock.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
let_underscore_must_use.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
let_underscore_must_use.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
let_underscore_untyped.rs Update UI tests 2025-02-15 13:38:16 +01:00
let_underscore_untyped.stderr Update UI tests 2025-02-15 13:38:16 +01:00
let_unit.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
let_unit.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
let_unit.stderr Update UI tests 2025-02-15 13:38:16 +01:00
let_with_type_underscore.rs Update UI tests 2025-02-15 13:38:16 +01:00
let_with_type_underscore.stderr Update UI tests 2025-02-15 13:38:16 +01:00
lines_filter_map_ok.fixed Update UI tests 2025-02-15 13:38:16 +01:00
lines_filter_map_ok.rs Update UI tests 2025-02-15 13:38:16 +01:00
lines_filter_map_ok.stderr Update UI tests 2025-02-15 13:38:16 +01:00
linkedlist.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
linkedlist.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
literal_string_with_formatting_arg.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
literal_string_with_formatting_arg.stderr Update UI tests 2025-02-15 13:38:16 +01:00
literals.rs better help for mixed_case_hex_literals 2025-03-04 17:43:14 +09:00
literals.stderr better help for mixed_case_hex_literals 2025-03-04 17:43:14 +09:00
lossy_float_literal.fixed Update UI tests 2025-02-15 13:38:16 +01:00
lossy_float_literal.rs Update UI tests 2025-02-15 13:38:16 +01:00
lossy_float_literal.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
macro_use_imports.fixed Update UI tests 2025-02-15 13:38:16 +01:00
macro_use_imports.rs Update UI tests 2025-02-15 13:38:16 +01:00
macro_use_imports.stderr Update UI tests 2025-02-15 13:38:16 +01:00
macro_use_imports_expect.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_arithmetic_check-2.rs Extend {implicit,inverted}_saturating_sub to expressions 2025-02-28 23:50:43 +01:00
manual_arithmetic_check-2.stderr Extend {implicit,inverted}_saturating_sub to expressions 2025-02-28 23:50:43 +01:00
manual_arithmetic_check.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_arithmetic_check.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_arithmetic_check.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_assert.edition2018.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
manual_assert.edition2021.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
manual_assert.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_async_fn.fixed don't emit lint inside macro in manual_async_fn 2025-02-05 15:06:35 +09:00
manual_async_fn.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_async_fn.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
manual_bits.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_bits.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_bits.stderr Use size_of from the prelude instead of imported 2025-03-05 00:37:40 -08:00
manual_c_str_literals.edition2021.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_c_str_literals.edition2021.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_c_str_literals.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_clamp.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_clamp.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_clamp.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_contains.fixed add manual_contains lint 2025-02-16 06:21:57 +09:00
manual_contains.rs add manual_contains lint 2025-02-16 06:21:57 +09:00
manual_contains.stderr add manual_contains lint 2025-02-16 06:21:57 +09:00
manual_div_ceil.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_div_ceil.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_div_ceil.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_div_ceil_with_feature.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_div_ceil_with_feature.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_div_ceil_with_feature.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_filter.fixed Merge commit 'a859e5cc1c' into clippyup 2023-12-16 14:12:50 +01:00
manual_filter.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_filter.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_filter_map.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_filter_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_filter_map.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_find.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_find.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_find_fixable.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
manual_find_fixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_find_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_find_map.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_find_map.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_find_map.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_flatten.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_flatten.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
manual_float_methods.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_float_methods.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
manual_hash_one.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_hash_one.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_hash_one.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_ignore_case_cmp.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_ignore_case_cmp.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_ignore_case_cmp.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
manual_inspect.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_inspect.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_inspect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_instant_elapsed.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
manual_instant_elapsed.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
manual_instant_elapsed.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_ascii_check.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_ascii_check.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_ascii_check.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
manual_is_power_of_two.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_power_of_two.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_power_of_two.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_variant_and.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_variant_and.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_is_variant_and.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_let_else.rs fix: manual_let_else missing binding mode 2025-03-03 13:02:44 +08:00
manual_let_else.stderr fix: manual_let_else missing binding mode 2025-03-03 13:02:44 +08:00
manual_let_else_match.fixed Merge commit 'b105fb4c39' into clippyup 2023-10-06 17:35:45 +02:00
manual_let_else_match.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_let_else_match.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_let_else_question_mark.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_let_else_question_mark.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_let_else_question_mark.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_main_separator_str.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_main_separator_str.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_main_separator_str.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_map_option.fixed move expr_requires_coercion to clippy_utils & some other adjustments 2025-02-05 10:26:17 +08:00
manual_map_option.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_map_option.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_map_option_2.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_map_option_2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_map_option_2.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_midpoint.fixed New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
manual_midpoint.rs New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
manual_midpoint.stderr New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
manual_next_back.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_next_back.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_next_back.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_non_exhaustive_enum.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_non_exhaustive_enum.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_non_exhaustive_struct.rs Merge commit '7901289135' into clippy-subtree-update 2024-09-24 11:58:04 +02:00
manual_non_exhaustive_struct.stderr Merge commit '7901289135' into clippy-subtree-update 2024-09-24 11:58:04 +02:00
manual_ok_err.fixed manual_ok_err: blockify the replacement of an else if … 2025-02-17 15:49:44 +01:00
manual_ok_err.rs manual_ok_err: blockify the replacement of an else if … 2025-02-17 15:49:44 +01:00
manual_ok_err.stderr manual_ok_err: blockify the replacement of an else if … 2025-02-17 15:49:44 +01:00
manual_ok_or.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_ok_or.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_ok_or.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_option_as_slice.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_option_as_slice.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_option_as_slice.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_pattern_char_comparison.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_pattern_char_comparison.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_pattern_char_comparison.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_range_patterns.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_range_patterns.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_range_patterns.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_rem_euclid.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_rem_euclid.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_rem_euclid.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_repeat_n.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_repeat_n.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_repeat_n.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_retain.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_retain.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_retain.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_rotate.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_rotate.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_rotate.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_saturating_arithmetic.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_saturating_arithmetic.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_saturating_arithmetic.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_slice_fill.fixed manual_slice_fill: initializer must not reference the iterator 2025-02-15 15:56:41 +01:00
manual_slice_fill.rs manual_slice_fill: initializer must not reference the iterator 2025-02-15 15:56:41 +01:00
manual_slice_fill.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_slice_size_calculation.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
manual_slice_size_calculation.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
manual_slice_size_calculation.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
manual_split_once.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_split_once.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_split_once.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_str_repeat.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_str_repeat.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_str_repeat.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_string_new.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_string_new.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_string_new.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_strip.rs manual_strip: use existing identifier instead of placeholder 2025-02-15 16:03:11 +01:00
manual_strip.stderr manual_strip: use existing identifier instead of placeholder 2025-02-15 16:03:11 +01:00
manual_strip_fixable.fixed manual_strip: use existing identifier instead of placeholder 2025-02-15 16:03:11 +01:00
manual_strip_fixable.rs manual_strip: use existing identifier instead of placeholder 2025-02-15 16:03:11 +01:00
manual_strip_fixable.stderr manual_strip: use existing identifier instead of placeholder 2025-02-15 16:03:11 +01:00
manual_swap_auto_fix.fixed Merge commit '9725c4a162' into clippy-subtree-update 2024-04-04 19:52:55 +02:00
manual_swap_auto_fix.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_swap_auto_fix.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_try_fold.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_try_fold.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_unwrap_or.fixed Merge commit '37f4fbb929' into clippy-subtree-update 2024-07-25 18:29:17 +02:00
manual_unwrap_or.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_unwrap_or.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_unwrap_or_default.fixed Merge commit '68a799aea9' into clippy-subtree-update 2024-06-27 18:56:04 +02:00
manual_unwrap_or_default.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_unwrap_or_default.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_unwrap_or_default_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
manual_unwrap_or_default_unfixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
manual_while_let_some.fixed Update UI tests 2025-02-15 13:38:16 +01:00
manual_while_let_some.rs Update UI tests 2025-02-15 13:38:16 +01:00
manual_while_let_some.stderr Update UI tests 2025-02-15 13:38:16 +01:00
many_single_char_names.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
many_single_char_names.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
map_all_any_identity.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
map_all_any_identity.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_all_any_identity.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
map_clone.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
map_clone.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_clone.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
map_collect_result_unit.fixed Update UI tests 2025-02-15 13:38:16 +01:00
map_collect_result_unit.rs Update UI tests 2025-02-15 13:38:16 +01:00
map_collect_result_unit.stderr Update UI tests 2025-02-15 13:38:16 +01:00
map_err.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_err.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
map_flatten.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_flatten.stderr Update UI tests 2025-02-15 13:38:16 +01:00
map_flatten_fixable.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
map_flatten_fixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_flatten_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
map_identity.fixed Update UI tests 2025-02-15 13:38:16 +01:00
map_identity.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_identity.stderr Update UI tests 2025-02-15 13:38:16 +01:00
map_unit_fn.rs Update UI tests 2025-02-15 13:38:16 +01:00
map_unwrap_or.rs Update UI tests 2025-02-15 13:38:16 +01:00
map_unwrap_or.stderr Update UI tests 2025-02-15 13:38:16 +01:00
map_unwrap_or_fixable.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
map_unwrap_or_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
map_unwrap_or_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
map_with_unused_argument_over_ranges.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
map_with_unused_argument_over_ranges.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
map_with_unused_argument_over_ranges.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
map_with_unused_argument_over_ranges_nostd.fixed Update UI tests 2025-02-15 13:38:16 +01:00
map_with_unused_argument_over_ranges_nostd.rs Update UI tests 2025-02-15 13:38:16 +01:00
map_with_unused_argument_over_ranges_nostd.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
match_as_ref.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
match_as_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_as_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
match_bool.fixed Don't use labeled block as top-level blocks 2025-01-29 18:46:38 +01:00
match_bool.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_bool.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_expr_like_matches_macro.fixed Update UI tests 2025-02-15 13:38:16 +01:00
match_expr_like_matches_macro.rs Update UI tests 2025-02-15 13:38:16 +01:00
match_expr_like_matches_macro.stderr Update UI tests 2025-02-15 13:38:16 +01:00
match_on_vec_items.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_on_vec_items.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_overlapping_arm.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_overlapping_arm.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_ref_pats.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
match_ref_pats.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_ref_pats.stderr Update UI tests 2025-02-15 13:38:16 +01:00
match_result_ok.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
match_result_ok.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_result_ok.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
match_same_arms.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms2.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms2.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms_non_exhaustive.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms_non_exhaustive.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_same_arms_non_exhaustive.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_single_binding.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
match_single_binding.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_single_binding.stderr Update UI tests 2025-02-15 13:38:16 +01:00
match_single_binding2.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
match_single_binding2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_single_binding2.stderr Update UI tests 2025-02-15 13:38:16 +01:00
match_str_case_mismatch.fixed Update UI tests 2025-02-15 13:38:16 +01:00
match_str_case_mismatch.rs Update UI tests 2025-02-15 13:38:16 +01:00
match_str_case_mismatch.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
match_wild_err_arm.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
match_wild_err_arm.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
match_wildcard_for_single_variants.fixed Update UI tests 2025-02-15 13:38:16 +01:00
match_wildcard_for_single_variants.rs Update UI tests 2025-02-15 13:38:16 +01:00
match_wildcard_for_single_variants.stderr Update UI tests 2025-02-15 13:38:16 +01:00
mem_forget.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mem_forget.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
mem_replace.fixed Update UI tests 2025-02-15 13:38:16 +01:00
mem_replace.rs Update UI tests 2025-02-15 13:38:16 +01:00
mem_replace.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
mem_replace_macro.rs Update UI tests 2025-02-15 13:38:16 +01:00
mem_replace_macro.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
mem_replace_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
mem_replace_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
mem_replace_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
methods.rs Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
methods.stderr Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
methods_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
methods_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
methods_fixable.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
methods_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
methods_unfixable.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
min_ident_chars.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
min_ident_chars.stderr Update UI tests 2025-02-15 13:38:16 +01:00
min_max.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
min_max.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
min_rust_version_attr.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
min_rust_version_attr.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
min_rust_version_invalid_attr.rs Merge commit '0f8eabd623' into clippyup 2024-08-24 18:33:44 -04:00
min_rust_version_invalid_attr.stderr Merge commit '0f8eabd623' into clippyup 2024-08-24 18:33:44 -04:00
mismatching_type_param_order.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mismatching_type_param_order.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
misnamed_getters.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
misnamed_getters.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
misnamed_getters.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_assert_message.rs Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
missing_assert_message.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
missing_asserts_for_indexing.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_asserts_for_indexing.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_asserts_for_indexing.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_asserts_for_indexing_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_asserts_for_indexing_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_const_for_thread_local.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_const_for_thread_local.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_const_for_thread_local.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_doc.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_doc.stderr Update UI tests 2025-02-15 13:38:16 +01:00
missing_doc_crate.rs Update UI tests 2025-02-15 13:38:16 +01:00
missing_doc_crate_missing.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_doc_crate_missing.stderr Tweak multispan rendering 2024-12-12 23:36:27 +00:00
missing_doc_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_doc_impl.stderr Update UI tests 2025-02-15 13:38:16 +01:00
missing_fields_in_debug.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_fields_in_debug.stderr Update UI tests 2025-02-15 13:38:16 +01:00
missing_inline.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_inline.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_inline_executable.rs Update UI tests 2025-02-15 13:38:16 +01:00
missing_inline_proc_macro.rs Update UI tests 2025-02-15 13:38:16 +01:00
missing_panics_doc.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_panics_doc.stderr Update UI tests 2025-02-15 13:38:16 +01:00
missing_spin_loop.fixed Update UI tests 2025-02-15 13:38:16 +01:00
missing_spin_loop.rs Update UI tests 2025-02-15 13:38:16 +01:00
missing_spin_loop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
missing_spin_loop_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
missing_spin_loop_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
missing_spin_loop_no_std.stderr remove support for the #[start] attribute 2025-01-21 06:59:15 -07:00
missing_trait_methods.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_trait_methods.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
missing_transmute_annotations.fixed Merge commit '9725c4a162' into clippy-subtree-update 2024-04-04 19:52:55 +02:00
missing_transmute_annotations.rs Merge commit '9725c4a162' into clippy-subtree-update 2024-04-04 19:52:55 +02:00
missing_transmute_annotations.stderr Merge commit '9725c4a162' into clippy-subtree-update 2024-04-04 19:52:55 +02:00
mistyped_literal_suffix.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
mistyped_literal_suffix.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
mistyped_literal_suffix.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
mixed_attributes_style.rs Merge commit '7901289135' into clippy-subtree-update 2024-09-24 11:58:04 +02:00
mixed_attributes_style.stderr Merge commit '7901289135' into clippy-subtree-update 2024-09-24 11:58:04 +02:00
mixed_read_write_in_expression.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mixed_read_write_in_expression.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
module_inception.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
module_inception.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
module_name_repetitions.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
module_name_repetitions.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_arithmetic_float.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_arithmetic_float.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_arithmetic_integral.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_arithmetic_integral.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_arithmetic_integral_const.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_arithmetic_integral_const.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_one.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
modulo_one.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
msrv_attributes_without_early_lints.rs Migrate clippy_lints to new MSRV API 2025-02-28 18:15:11 +00:00
multi_assignments.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
multi_assignments.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
multiple_bound_locations.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
multiple_bound_locations.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
multiple_unsafe_ops_per_block.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
multiple_unsafe_ops_per_block.stderr Update UI tests 2025-02-15 13:38:16 +01:00
must_use_candidates.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
must_use_candidates.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
must_use_candidates.stderr Update UI tests 2025-02-15 13:38:16 +01:00
must_use_unit.fixed Split must_use_unit test into an unfixable part 2025-02-27 21:51:42 +01:00
must_use_unit.rs Split must_use_unit test into an unfixable part 2025-02-27 21:51:42 +01:00
must_use_unit.stderr Split must_use_unit test into an unfixable part 2025-02-27 21:51:42 +01:00
must_use_unit_unfixable.rs Split must_use_unit test into an unfixable part 2025-02-27 21:51:42 +01:00
must_use_unit_unfixable.stderr Split must_use_unit test into an unfixable part 2025-02-27 21:51:42 +01:00
mut_from_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_from_ref.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_key.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_key.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_mut.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_mut.stderr Update UI tests 2025-02-15 13:38:16 +01:00
mut_mutex_lock.fixed Update UI tests 2025-02-15 13:38:16 +01:00
mut_mutex_lock.rs Update UI tests 2025-02-15 13:38:16 +01:00
mut_mutex_lock.stderr Update UI tests 2025-02-15 13:38:16 +01:00
mut_range_bound.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_range_bound.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_reference.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mut_reference.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
mutex_atomic.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
mutex_atomic.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_arbitrary_self_type.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_arbitrary_self_type.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_arbitrary_self_type.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_arbitrary_self_type_unfixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_arbitrary_self_type_unfixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_arbitrary_self_type_unfixable.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
needless_as_bytes.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_as_bytes.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_as_bytes.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_bitwise_bool.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_bitwise_bool.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_bitwise_bool.stderr Merge commit '9d6f41691e' into clippy-subtree-update 2024-03-21 22:20:40 +01:00
needless_bool_assign.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_bool_assign.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_bool_assign.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_borrow.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_borrow.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_borrow.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_borrow_pat.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_borrow_pat.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_borrow_pat.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
needless_borrowed_ref.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_borrowed_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_borrowed_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_borrows_for_generic_args.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_borrows_for_generic_args.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_borrows_for_generic_args.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_character_iteration.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_character_iteration.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_character_iteration.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_collect.fixed needless_collect: avoid warning if non-iterator methods are used (#14147) 2025-03-02 22:40:07 +00:00
needless_collect.rs needless_collect: avoid warning if non-iterator methods are used (#14147) 2025-03-02 22:40:07 +00:00
needless_collect.stderr add manual_contains lint 2025-02-16 06:21:57 +09:00
needless_collect_indirect.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_collect_indirect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_continue.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_continue.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_doc_main.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_doc_main.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_else.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_else.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_else.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
needless_for_each_fixable.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_for_each_fixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_for_each_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_for_each_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_for_each_unfixable.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
needless_if.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_if.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_if.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_late_init.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_late_init.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_late_init.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_lifetimes.fixed Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
needless_lifetimes.rs Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
needless_lifetimes.stderr Split needless_lifetime '_ suggestions into elidable_lifetime_names 2025-02-24 14:23:33 +00:00
needless_match.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_match.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_match.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_maybe_sized.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_maybe_sized.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_maybe_sized.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_option_as_deref.fixed fix: needless_option_as_deref FP in trait (#14210) 2025-02-17 23:33:46 +00:00
needless_option_as_deref.rs fix: needless_option_as_deref FP in trait (#14210) 2025-02-17 23:33:46 +00:00
needless_option_as_deref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_option_take.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_option_take.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_option_take.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_parens_on_range_literals.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_parens_on_range_literals.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_parens_on_range_literals.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_pass_by_ref_mut.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_pass_by_ref_mut.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_pass_by_ref_mut2.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_pass_by_ref_mut2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_pass_by_ref_mut2.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_pass_by_value.rs needless_pass_by_value: reference the innermost Option content 2025-03-12 06:57:25 +01:00
needless_pass_by_value.stderr needless_pass_by_value: make verbose suggestion 2025-03-12 13:50:04 +01:00
needless_pass_by_value_proc_macro.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_pub_self.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_pub_self.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_pub_self.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_question_mark.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_question_mark.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_question_mark.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_range_loop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_range_loop.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
needless_range_loop2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_range_loop2.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
needless_raw_string.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_raw_string.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_raw_string.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_raw_string_hashes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_raw_string_hashes.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_raw_string_hashes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_return.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_return.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_return.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
needless_return_with_question_mark.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_return_with_question_mark.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_return_with_question_mark.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_splitn.fixed Update UI tests 2025-02-15 13:38:16 +01:00
needless_splitn.rs Update UI tests 2025-02-15 13:38:16 +01:00
needless_splitn.stderr Update UI tests 2025-02-15 13:38:16 +01:00
needless_update.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
needless_update.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
neg_cmp_op_on_partial_ord.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
neg_cmp_op_on_partial_ord.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
neg_multiply.fixed Update UI tests 2025-02-15 13:38:16 +01:00
neg_multiply.rs Update UI tests 2025-02-15 13:38:16 +01:00
neg_multiply.stderr Update UI tests 2025-02-15 13:38:16 +01:00
never_loop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
never_loop.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
new_ret_no_self.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
new_ret_no_self.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
new_ret_no_self_overflow.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
new_ret_no_self_overflow.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
new_without_default.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
new_without_default.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
new_without_default.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect_async_fn.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect_async_fn.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect_replace.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect_replace.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect_return.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
no_effect_return.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
no_mangle_with_rust_abi.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
no_mangle_with_rust_abi.stderr Update UI tests 2025-02-15 13:38:16 +01:00
no_mangle_with_rust_abi_2021.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
no_mangle_with_rust_abi_2021.stderr Update UI tests 2025-02-15 13:38:16 +01:00
non_canonical_clone_impl.fixed Merge commit '3e5a02b13b' into clippy-subtree-update 2024-06-13 12:30:48 +02:00
non_canonical_clone_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
non_canonical_clone_impl.stderr Update UI tests 2025-02-15 13:38:16 +01:00
non_canonical_partial_ord_impl.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
non_canonical_partial_ord_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
non_canonical_partial_ord_impl.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
non_canonical_partial_ord_impl_fully_qual.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
non_canonical_partial_ord_impl_fully_qual.stderr Update UI tests 2025-02-15 13:38:16 +01:00
non_expressive_names.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
non_expressive_names.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
non_minimal_cfg.fixed Update UI tests 2025-02-15 13:38:16 +01:00
non_minimal_cfg.rs Update UI tests 2025-02-15 13:38:16 +01:00
non_minimal_cfg.stderr Update UI tests 2025-02-15 13:38:16 +01:00
non_minimal_cfg2.rs Update UI tests 2025-02-15 13:38:16 +01:00
non_minimal_cfg2.stderr Update UI tests 2025-02-15 13:38:16 +01:00
non_octal_unix_permissions.fixed Update UI tests 2025-02-15 13:38:16 +01:00
non_octal_unix_permissions.rs Update UI tests 2025-02-15 13:38:16 +01:00
non_octal_unix_permissions.stderr Update UI tests 2025-02-15 13:38:16 +01:00
non_send_fields_in_send_ty.rs Remove suspicious auto trait lint 2024-02-19 17:41:48 -03:00
non_send_fields_in_send_ty.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
non_zero_suggestions.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
non_zero_suggestions.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
non_zero_suggestions.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
non_zero_suggestions_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
non_zero_suggestions_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
nonminimal_bool.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
nonminimal_bool.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
nonminimal_bool_methods.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
nonminimal_bool_methods.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
nonminimal_bool_methods.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
nonminimal_bool_methods_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
nonminimal_bool_methods_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
obfuscated_if_else.fixed extend obfuscated_if_else to support then().unwrap_or_else() and then_some().unwrap_or_else() 2025-02-22 03:22:23 +09:00
obfuscated_if_else.rs extend obfuscated_if_else to support then().unwrap_or_else() and then_some().unwrap_or_else() 2025-02-22 03:22:23 +09:00
obfuscated_if_else.stderr extend obfuscated_if_else to support then().unwrap_or_else() and then_some().unwrap_or_else() 2025-02-22 03:22:23 +09:00
octal_escapes.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
octal_escapes.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
ok_expect.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
ok_expect.stderr Update UI tests 2025-02-15 13:38:16 +01:00
only_used_in_recursion.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
only_used_in_recursion.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
only_used_in_recursion2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
only_used_in_recursion2.stderr Update UI tests 2025-02-15 13:38:16 +01:00
op_ref.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
op_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
op_ref.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
open_options.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
open_options.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
open_options_fixable.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
open_options_fixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
open_options_fixable.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
option_as_ref_cloned.fixed Update UI tests 2025-02-15 13:38:16 +01:00
option_as_ref_cloned.rs Update UI tests 2025-02-15 13:38:16 +01:00
option_as_ref_cloned.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
option_as_ref_deref.fixed Update UI tests 2025-02-15 13:38:16 +01:00
option_as_ref_deref.rs Update UI tests 2025-02-15 13:38:16 +01:00
option_as_ref_deref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
option_env_unwrap.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
option_env_unwrap.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
option_filter_map.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
option_filter_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
option_filter_map.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
option_if_let_else.fixed New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
option_if_let_else.rs New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
option_if_let_else.stderr New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
option_map_or_none.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
option_map_or_none.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
option_map_or_none.stderr Update UI tests 2025-02-15 13:38:16 +01:00
option_map_unit_fn_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
option_map_unit_fn_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
option_map_unit_fn_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
option_map_unit_fn_unfixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
option_map_unit_fn_unfixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
option_option.rs Merge commit '9d6f41691e' into clippy-subtree-update 2024-03-21 22:20:40 +01:00
option_option.stderr Merge commit '9d6f41691e' into clippy-subtree-update 2024-03-21 22:20:40 +01:00
or_fun_call.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
or_fun_call.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
or_fun_call.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
or_then_unwrap.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
or_then_unwrap.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
or_then_unwrap.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
overly_complex_bool_expr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
overly_complex_bool_expr.rs Update UI tests 2025-02-15 13:38:16 +01:00
overly_complex_bool_expr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
owned_cow.fixed add owned_cow lint 2025-02-19 23:12:46 +01:00
owned_cow.rs add owned_cow lint 2025-02-19 23:12:46 +01:00
owned_cow.stderr add owned_cow lint 2025-02-19 23:12:46 +01:00
panic_in_result_fn.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
panic_in_result_fn.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
panic_in_result_fn_assertions.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
panic_in_result_fn_assertions.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
panic_in_result_fn_debug_assertions.rs Update UI tests 2025-02-15 13:38:16 +01:00
panicking_macros.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
panicking_macros.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
panicking_overflow_checks.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
panicking_overflow_checks.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
partial_pub_fields.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
partial_pub_fields.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
partialeq_ne_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
partialeq_ne_impl.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
partialeq_to_none.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
partialeq_to_none.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
partialeq_to_none.stderr Update UI tests 2025-02-15 13:38:16 +01:00
path_buf_push_overwrite.fixed Update UI tests 2025-02-15 13:38:16 +01:00
path_buf_push_overwrite.rs Update UI tests 2025-02-15 13:38:16 +01:00
path_buf_push_overwrite.stderr Merge commit '37f4fbb929' into clippy-subtree-update 2024-07-25 18:29:17 +02:00
path_ends_with_ext.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
path_ends_with_ext.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
path_ends_with_ext.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
pathbuf_init_then_push.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
pathbuf_init_then_push.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
pathbuf_init_then_push.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
patterns.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
patterns.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
patterns.stderr Update UI tests 2025-02-15 13:38:16 +01:00
permissions_set_readonly_false.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
permissions_set_readonly_false.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
pointers_in_nomem_asm_block.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
pointers_in_nomem_asm_block.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
precedence.fixed Update UI tests 2025-02-15 13:38:16 +01:00
precedence.rs Update UI tests 2025-02-15 13:38:16 +01:00
precedence.stderr Update UI tests 2025-02-15 13:38:16 +01:00
precedence_bits.fixed Update UI tests 2025-02-15 13:38:16 +01:00
precedence_bits.rs Update UI tests 2025-02-15 13:38:16 +01:00
precedence_bits.stderr Update UI tests 2025-02-15 13:38:16 +01:00
print.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
print.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
print_in_format_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
print_in_format_impl.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
print_literal.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
print_literal.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
print_literal.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
print_stderr.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
print_stderr.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
print_stdout_build_script.rs Update UI tests 2025-02-15 13:38:16 +01:00
print_with_newline.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
print_with_newline.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
print_with_newline.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
println_empty_string.fixed Update UI tests 2025-02-15 13:38:16 +01:00
println_empty_string.rs Update UI tests 2025-02-15 13:38:16 +01:00
println_empty_string.stderr Update UI tests 2025-02-15 13:38:16 +01:00
proc_macro.rs Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
proc_macro.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
ptr_arg.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
ptr_arg.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
ptr_as_ptr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
ptr_as_ptr.rs Update UI tests 2025-02-15 13:38:16 +01:00
ptr_as_ptr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
ptr_cast_constness.fixed Update UI tests 2025-02-15 13:38:16 +01:00
ptr_cast_constness.rs Update UI tests 2025-02-15 13:38:16 +01:00
ptr_cast_constness.stderr Update UI tests 2025-02-15 13:38:16 +01:00
ptr_eq.fixed Apply ptr_eq lint only if cmp_null is not applicable 2025-03-02 16:21:12 +01:00
ptr_eq.rs Apply ptr_eq lint only if cmp_null is not applicable 2025-03-02 16:21:12 +01:00
ptr_eq.stderr Apply ptr_eq lint only if cmp_null is not applicable 2025-03-02 16:21:12 +01:00
ptr_eq_no_std.fixed Lint more cases of ptr::eq() 2025-03-02 15:50:13 +01:00
ptr_eq_no_std.rs Lint more cases of ptr::eq() 2025-03-02 15:50:13 +01:00
ptr_eq_no_std.stderr Lint more cases of ptr::eq() 2025-03-02 15:50:13 +01:00
ptr_offset_with_cast.fixed Update UI tests 2025-02-15 13:38:16 +01:00
ptr_offset_with_cast.rs Update UI tests 2025-02-15 13:38:16 +01:00
ptr_offset_with_cast.stderr Update UI tests 2025-02-15 13:38:16 +01:00
pub_use.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
pub_use.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
pub_with_shorthand.fixed Update UI tests 2025-02-15 13:38:16 +01:00
pub_with_shorthand.rs Update UI tests 2025-02-15 13:38:16 +01:00
pub_with_shorthand.stderr Update UI tests 2025-02-15 13:38:16 +01:00
pub_without_shorthand.fixed Update UI tests 2025-02-15 13:38:16 +01:00
pub_without_shorthand.rs Update UI tests 2025-02-15 13:38:16 +01:00
pub_without_shorthand.stderr Update UI tests 2025-02-15 13:38:16 +01:00
question_mark.fixed Update UI tests 2025-02-15 13:38:16 +01:00
question_mark.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
question_mark.stderr Update UI tests 2025-02-15 13:38:16 +01:00
question_mark_used.rs Update UI tests 2025-02-15 13:38:16 +01:00
question_mark_used.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
range.fixed Update UI tests 2025-02-15 13:38:16 +01:00
range.rs Update UI tests 2025-02-15 13:38:16 +01:00
range.stderr autofix for range_zip_with_len 2025-02-02 23:44:22 +09:00
range_contains.fixed Update UI tests 2025-02-15 13:38:16 +01:00
range_contains.rs Update UI tests 2025-02-15 13:38:16 +01:00
range_contains.stderr Update UI tests 2025-02-15 13:38:16 +01:00
range_plus_minus_one.fixed Update UI tests 2025-02-15 13:38:16 +01:00
range_plus_minus_one.rs Update UI tests 2025-02-15 13:38:16 +01:00
range_plus_minus_one.stderr Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer.fixed Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer.rs Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer.stderr Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer_arc.fixed Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer_arc.rs Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer_arc.stderr Update UI tests 2025-02-15 13:38:16 +01:00
rc_buffer_redefined_string.rs Update UI tests 2025-02-15 13:38:16 +01:00
rc_mutex.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
rc_mutex.stderr Update UI tests 2025-02-15 13:38:16 +01:00
read_line_without_trim.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
read_line_without_trim.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
read_line_without_trim.stderr Update UI tests 2025-02-15 13:38:16 +01:00
read_zero_byte_vec.rs Update UI tests 2025-02-15 13:38:16 +01:00
read_zero_byte_vec.stderr Update UI tests 2025-02-15 13:38:16 +01:00
readonly_write_lock.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
readonly_write_lock.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
readonly_write_lock.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
recursive_format_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
recursive_format_impl.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_allocation.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_allocation.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_allocation_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
redundant_allocation_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
redundant_allocation_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_as_str.fixed Update UI tests 2025-02-15 13:38:16 +01:00
redundant_as_str.rs Update UI tests 2025-02-15 13:38:16 +01:00
redundant_as_str.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_async_block.fixed Update UI tests 2025-02-15 13:38:16 +01:00
redundant_async_block.rs Update UI tests 2025-02-15 13:38:16 +01:00
redundant_async_block.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_at_rest_pattern.fixed Update UI tests 2025-02-15 13:38:16 +01:00
redundant_at_rest_pattern.rs Update UI tests 2025-02-15 13:38:16 +01:00
redundant_at_rest_pattern.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_clone.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_clone.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_clone.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_closure_call_early.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_closure_call_early.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_closure_call_fixable.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_closure_call_fixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_closure_call_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_closure_call_late.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_closure_call_late.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_else.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_else.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_else.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_field_names.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_field_names.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_field_names.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_guards.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_guards.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_guards.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
redundant_locals.rs Update UI tests 2025-02-15 13:38:16 +01:00
redundant_locals.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_pattern_matching_drop_order.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_drop_order.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_drop_order.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_pattern_matching_if_let_true.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_if_let_true.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_if_let_true.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_pattern_matching_ipaddr.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_ipaddr.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_ipaddr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_pattern_matching_option.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_pattern_matching_option.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_pattern_matching_option.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_pattern_matching_poll.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_poll.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_poll.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_pattern_matching_result.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_result.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_pattern_matching_result.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_pub_crate.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_pub_crate.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_pub_crate.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_slicing.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_slicing.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_slicing.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
redundant_static_lifetimes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
redundant_static_lifetimes.rs Update UI tests 2025-02-15 13:38:16 +01:00
redundant_static_lifetimes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
redundant_static_lifetimes_multiple.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_static_lifetimes_multiple.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_type_annotations.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
redundant_type_annotations.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
ref_as_ptr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
ref_as_ptr.rs Update UI tests 2025-02-15 13:38:16 +01:00
ref_as_ptr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
ref_binding_to_reference.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
ref_binding_to_reference.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
ref_option_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
ref_option_ref.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
ref_patterns.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
ref_patterns.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
regex.rs Update UI tests 2025-02-15 13:38:16 +01:00
regex.stderr Update UI tests 2025-02-15 13:38:16 +01:00
rename.fixed Merge remote-tracking branch 'upstream/master' into rustup 2025-01-28 19:14:45 +01:00
rename.rs Merge remote-tracking branch 'upstream/master' into rustup 2025-01-28 19:14:45 +01:00
rename.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-01-28 19:14:45 +01:00
renamed_builtin_attr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
renamed_builtin_attr.rs Update UI tests 2025-02-15 13:38:16 +01:00
renamed_builtin_attr.stderr Merge commit '93f0a9a91f' into clippy-subtree-update 2024-03-07 17:19:29 +01:00
repeat_once.fixed Update UI tests 2025-02-15 13:38:16 +01:00
repeat_once.rs Update UI tests 2025-02-15 13:38:16 +01:00
repeat_once.stderr Update UI tests 2025-02-15 13:38:16 +01:00
repeat_vec_with_capacity.fixed add MSRV check for repeat_vec_with_capacity (#14126) 2025-02-23 15:50:44 +00:00
repeat_vec_with_capacity.rs add MSRV check for repeat_vec_with_capacity (#14126) 2025-02-23 15:50:44 +00:00
repeat_vec_with_capacity.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
repeat_vec_with_capacity_nostd.fixed Update UI tests 2025-02-15 13:38:16 +01:00
repeat_vec_with_capacity_nostd.rs Update UI tests 2025-02-15 13:38:16 +01:00
repeat_vec_with_capacity_nostd.stderr Show diff suggestion format on verbose replacement 2025-02-10 20:21:39 +00:00
repl_uninit.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
repl_uninit.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
repr_packed_without_abi.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
repr_packed_without_abi.stderr Update UI tests 2025-02-15 13:38:16 +01:00
reserve_after_initialization.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
reserve_after_initialization.rs Update UI tests 2025-02-15 13:38:16 +01:00
reserve_after_initialization.stderr Update UI tests 2025-02-15 13:38:16 +01:00
rest_pat_in_fully_bound_structs.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
rest_pat_in_fully_bound_structs.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
result_filter_map.fixed Merge commit 'ac4c2094a6' into clippy-subtree-sync 2023-12-28 19:33:07 +01:00
result_filter_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
result_filter_map.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
result_large_err.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
result_large_err.stderr Update UI tests 2025-02-15 13:38:16 +01:00
result_map_or_into_option.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
result_map_or_into_option.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
result_map_or_into_option.stderr Update UI tests 2025-02-15 13:38:16 +01:00
result_map_unit_fn_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
result_map_unit_fn_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
result_map_unit_fn_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
result_map_unit_fn_unfixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
result_map_unit_fn_unfixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
result_unit_error.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
result_unit_error.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
result_unit_error_no_std.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
result_unit_error_no_std.stderr remove support for the #[start] attribute 2025-01-21 06:59:15 -07:00
return_and_then.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
return_and_then.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
return_and_then.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
return_self_not_must_use.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
return_self_not_must_use.stderr Update UI tests 2025-02-15 13:38:16 +01:00
reversed_empty_ranges_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
reversed_empty_ranges_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
reversed_empty_ranges_fixable.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
reversed_empty_ranges_loops_fixable.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
reversed_empty_ranges_loops_fixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
reversed_empty_ranges_loops_fixable.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
reversed_empty_ranges_loops_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
reversed_empty_ranges_loops_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
reversed_empty_ranges_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
reversed_empty_ranges_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
same_functions_in_if_condition.rs comparison_chain: stylepedantic 2025-02-15 16:24:38 +01:00
same_functions_in_if_condition.stderr comparison_chain: stylepedantic 2025-02-15 16:24:38 +01:00
same_item_push.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
same_item_push.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
same_name_method.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
same_name_method.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
search_is_some.rs Update UI tests 2025-02-15 13:38:16 +01:00
search_is_some.stderr Update UI tests 2025-02-15 13:38:16 +01:00
search_is_some_fixable_none.fixed add manual_contains lint 2025-02-16 06:21:57 +09:00
search_is_some_fixable_none.rs add manual_contains lint 2025-02-16 06:21:57 +09:00
search_is_some_fixable_none.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
search_is_some_fixable_some.fixed add manual_contains lint 2025-02-16 06:21:57 +09:00
search_is_some_fixable_some.rs add manual_contains lint 2025-02-16 06:21:57 +09:00
search_is_some_fixable_some.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
seek_from_current.fixed Update UI tests 2025-02-15 13:38:16 +01:00
seek_from_current.rs Update UI tests 2025-02-15 13:38:16 +01:00
seek_from_current.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
seek_to_start_instead_of_rewind.fixed Update UI tests 2025-02-15 13:38:16 +01:00
seek_to_start_instead_of_rewind.rs Update UI tests 2025-02-15 13:38:16 +01:00
seek_to_start_instead_of_rewind.stderr Update UI tests 2025-02-15 13:38:16 +01:00
self_assignment.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
self_assignment.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
self_named_constructors.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
self_named_constructors.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
semicolon_if_nothing_returned.fixed Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_if_nothing_returned.rs Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_if_nothing_returned.stderr Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_inside_block.fixed Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_inside_block.rs Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_inside_block.stderr Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_outside_block.fixed Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_outside_block.rs Update UI tests 2025-02-15 13:38:16 +01:00
semicolon_outside_block.stderr Update UI tests 2025-02-15 13:38:16 +01:00
serde.rs Update UI tests 2025-02-15 13:38:16 +01:00
serde.stderr Update UI tests 2025-02-15 13:38:16 +01:00
set_contains_or_insert.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
set_contains_or_insert.stderr Update UI tests 2025-02-15 13:38:16 +01:00
shadow.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
shadow.stderr Update UI tests 2025-02-15 13:38:16 +01:00
short_circuit_statement.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
short_circuit_statement.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
short_circuit_statement.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
should_panic_without_expect.rs Update UI tests 2025-02-15 13:38:16 +01:00
should_panic_without_expect.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
significant_drop_in_scrutinee.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
significant_drop_in_scrutinee.stderr Update UI tests 2025-02-15 13:38:16 +01:00
significant_drop_tightening.fixed Update UI tests 2025-02-15 13:38:16 +01:00
significant_drop_tightening.rs Update UI tests 2025-02-15 13:38:16 +01:00
significant_drop_tightening.stderr Update UI tests 2025-02-15 13:38:16 +01:00
similar_names.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
similar_names.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
single_call_fn.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
single_call_fn.stderr Update UI tests 2025-02-15 13:38:16 +01:00
single_char_add_str.fixed Update UI tests 2025-02-15 13:38:16 +01:00
single_char_add_str.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_char_add_str.stderr Update UI tests 2025-02-15 13:38:16 +01:00
single_char_lifetime_names.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
single_char_lifetime_names.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
single_char_pattern.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
single_char_pattern.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
single_char_pattern.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
single_component_path_imports.fixed Update UI tests 2025-02-15 13:38:16 +01:00
single_component_path_imports.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_component_path_imports.stderr Update UI tests 2025-02-15 13:38:16 +01:00
single_component_path_imports_macro.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_component_path_imports_nested_first.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
single_component_path_imports_nested_first.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
single_component_path_imports_self_after.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_component_path_imports_self_before.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_element_loop.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
single_element_loop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
single_element_loop.stderr Update UI tests 2025-02-15 13:38:16 +01:00
single_match.fixed Update UI tests 2025-02-15 13:38:16 +01:00
single_match.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_match.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
single_match_else.fixed Update UI tests 2025-02-15 13:38:16 +01:00
single_match_else.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_match_else.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
single_option_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
single_option_map.stderr Update UI tests 2025-02-15 13:38:16 +01:00
single_range_in_vec_init.rs Update UI tests 2025-02-15 13:38:16 +01:00
single_range_in_vec_init.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
size_of_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
size_of_ref.stderr Use size_of from the prelude instead of imported 2025-03-05 00:37:40 -08:00
skip_while_next.rs Update UI tests 2025-02-15 13:38:16 +01:00
skip_while_next.stderr Update UI tests 2025-02-15 13:38:16 +01:00
sliced_string_as_bytes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
sliced_string_as_bytes.rs Update UI tests 2025-02-15 13:38:16 +01:00
sliced_string_as_bytes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
slow_vector_initialization.fixed Merge commit '51d49c1ae2' into clippy-subtree-update 2025-01-28 19:33:54 +01:00
slow_vector_initialization.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
slow_vector_initialization.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
stable_sort_primitive.fixed Update UI tests 2025-02-15 13:38:16 +01:00
stable_sort_primitive.rs Update UI tests 2025-02-15 13:38:16 +01:00
stable_sort_primitive.stderr Update UI tests 2025-02-15 13:38:16 +01:00
starts_ends_with.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
starts_ends_with.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
starts_ends_with.stderr Update UI tests 2025-02-15 13:38:16 +01:00
std_instead_of_core.fixed Update UI tests 2025-02-15 13:38:16 +01:00
std_instead_of_core.rs Update UI tests 2025-02-15 13:38:16 +01:00
std_instead_of_core.stderr Merge commit 'cb806113e0' into clippy-subtree-update 2024-08-08 19:13:50 +02:00
str_split.fixed Update UI tests 2025-02-15 13:38:16 +01:00
str_split.rs Update UI tests 2025-02-15 13:38:16 +01:00
str_split.stderr Update UI tests 2025-02-15 13:38:16 +01:00
str_to_string.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
str_to_string.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
str_to_string.stderr Update UI tests 2025-02-15 13:38:16 +01:00
string_add.rs Update UI tests 2025-02-15 13:38:16 +01:00
string_add.stderr Update UI tests 2025-02-15 13:38:16 +01:00
string_add_assign.fixed Update UI tests 2025-02-15 13:38:16 +01:00
string_add_assign.rs Update UI tests 2025-02-15 13:38:16 +01:00
string_add_assign.stderr Update UI tests 2025-02-15 13:38:16 +01:00
string_extend.fixed Update UI tests 2025-02-15 13:38:16 +01:00
string_extend.rs Update UI tests 2025-02-15 13:38:16 +01:00
string_extend.stderr Update UI tests 2025-02-15 13:38:16 +01:00
string_from_utf8_as_bytes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
string_from_utf8_as_bytes.rs Update UI tests 2025-02-15 13:38:16 +01:00
string_from_utf8_as_bytes.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
string_lit_as_bytes.fixed Update UI tests 2025-02-15 13:38:16 +01:00
string_lit_as_bytes.rs Update UI tests 2025-02-15 13:38:16 +01:00
string_lit_as_bytes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
string_lit_chars_any.fixed Update UI tests 2025-02-15 13:38:16 +01:00
string_lit_chars_any.rs Update UI tests 2025-02-15 13:38:16 +01:00
string_lit_chars_any.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
string_slice.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
string_slice.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
string_to_string.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
string_to_string.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
strlen_on_c_strings.fixed Update UI tests 2025-02-15 13:38:16 +01:00
strlen_on_c_strings.rs Update UI tests 2025-02-15 13:38:16 +01:00
strlen_on_c_strings.stderr Update UI tests 2025-02-15 13:38:16 +01:00
struct_excessive_bools.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
struct_excessive_bools.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
struct_fields.rs Make struct_field_names lint on private fields of public structs. 2025-03-04 10:49:13 -08:00
struct_fields.stderr Make struct_field_names lint on private fields of public structs. 2025-03-04 10:49:13 -08:00
suspicious_arithmetic_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_arithmetic_impl.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_command_arg_space.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_command_arg_space.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_command_arg_space.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_doc_comments.fixed Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
suspicious_doc_comments.rs Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
suspicious_doc_comments.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
suspicious_doc_comments_unfixable.rs Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
suspicious_doc_comments_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_else_formatting.rs ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
suspicious_else_formatting.stderr ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
suspicious_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_map.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_operation_groupings.fixed New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
suspicious_operation_groupings.rs New lint: manual_midpoint 2025-02-27 22:12:16 +01:00
suspicious_operation_groupings.stderr Update UI tests 2025-02-15 13:38:16 +01:00
suspicious_splitn.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_splitn.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_to_owned.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
suspicious_to_owned.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
suspicious_unary_op_formatting.rs Update UI tests 2025-02-15 13:38:16 +01:00
suspicious_unary_op_formatting.stderr Update UI tests 2025-02-15 13:38:16 +01:00
suspicious_xor_used_as_pow.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
suspicious_xor_used_as_pow.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
swap.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
swap.rs Update UI tests 2025-02-15 13:38:16 +01:00
swap.stderr Update UI tests 2025-02-15 13:38:16 +01:00
swap_ptr_to_ref.fixed Update UI tests 2025-02-15 13:38:16 +01:00
swap_ptr_to_ref.rs Update UI tests 2025-02-15 13:38:16 +01:00
swap_ptr_to_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
swap_ptr_to_ref_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
swap_ptr_to_ref_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
tabs_in_doc_comments.fixed Update UI tests 2025-02-15 13:38:16 +01:00
tabs_in_doc_comments.rs Update UI tests 2025-02-15 13:38:16 +01:00
tabs_in_doc_comments.stderr Update UI tests 2025-02-15 13:38:16 +01:00
temporary_assignment.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
temporary_assignment.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
test_attr_in_doctest.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
test_attr_in_doctest.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
tests_outside_test_module.rs Update UI tests 2025-02-15 13:38:16 +01:00
tests_outside_test_module.stderr Update UI tests 2025-02-15 13:38:16 +01:00
to_digit_is_some.fixed Update UI tests 2025-02-15 13:38:16 +01:00
to_digit_is_some.rs Update UI tests 2025-02-15 13:38:16 +01:00
to_digit_is_some.stderr Update UI tests 2025-02-15 13:38:16 +01:00
to_string_in_format_args_incremental.fixed Update UI tests 2025-02-15 13:38:16 +01:00
to_string_in_format_args_incremental.rs Update UI tests 2025-02-15 13:38:16 +01:00
to_string_in_format_args_incremental.stderr Remove $DIR replacement in test output 2024-02-17 12:34:54 +00:00
to_string_trait_impl.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
to_string_trait_impl.stderr Update UI tests 2025-02-15 13:38:16 +01:00
too_long_first_doc_paragraph-fix.fixed Update UI tests 2025-02-15 13:38:16 +01:00
too_long_first_doc_paragraph-fix.rs Update UI tests 2025-02-15 13:38:16 +01:00
too_long_first_doc_paragraph-fix.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
too_long_first_doc_paragraph.rs fix: too_long_first_doc_paragraph suggests wrongly when first line too long 2025-02-22 19:05:07 +08:00
too_long_first_doc_paragraph.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-27 21:51:42 +01:00
toplevel_ref_arg.fixed Update UI tests 2025-02-15 13:38:16 +01:00
toplevel_ref_arg.rs Update UI tests 2025-02-15 13:38:16 +01:00
toplevel_ref_arg.stderr Update UI tests 2025-02-15 13:38:16 +01:00
toplevel_ref_arg_non_rustfix.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
toplevel_ref_arg_non_rustfix.stderr Update UI tests 2025-02-15 13:38:16 +01:00
track-diagnostics.rs Update UI tests 2025-02-15 13:38:16 +01:00
track-diagnostics.stderr Move all error reporting into rustc_trait_selection 2024-07-21 22:34:35 -04:00
trailing_empty_array.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
trailing_empty_array.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
trailing_zeros.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
trailing_zeros.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
trailing_zeros.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
trait_duplication_in_bounds.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
trait_duplication_in_bounds.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
trait_duplication_in_bounds.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
trait_duplication_in_bounds_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
trait_duplication_in_bounds_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_32bit.rs Fix tests/ui/transmute_32bit.rs annotations 2025-02-15 15:03:54 +01:00
transmute_32bit.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
transmute_64bit.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_64bit.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_collection.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_collection.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_float_to_int.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_float_to_int.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_float_to_int.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_char.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_char.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_char.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_char_no_std.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_char_no_std.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_char_no_std.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_non_zero.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_non_zero.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_int_to_non_zero.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_null_to_fn.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_null_to_fn.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_ptr_to_ptr.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_ptr_to_ptr.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_ptr_to_ptr.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
transmute_ptr_to_ref.fixed Update UI tests 2025-02-15 13:38:16 +01:00
transmute_ptr_to_ref.rs Update UI tests 2025-02-15 13:38:16 +01:00
transmute_ptr_to_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
transmute_ref_to_ref.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_ref_to_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
transmute_ref_to_ref_no_std.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_ref_to_ref_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
transmute_undefined_repr.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmute_undefined_repr.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
transmutes_expressible_as_ptr_casts.fixed Update UI tests 2025-02-15 13:38:16 +01:00
transmutes_expressible_as_ptr_casts.rs Update UI tests 2025-02-15 13:38:16 +01:00
transmutes_expressible_as_ptr_casts.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
transmuting_null.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
transmuting_null.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
trim_split_whitespace.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
trim_split_whitespace.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
trim_split_whitespace.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
trivially_copy_pass_by_ref.rs Update UI tests 2025-02-15 13:38:16 +01:00
trivially_copy_pass_by_ref.stderr Update UI tests 2025-02-15 13:38:16 +01:00
try_err.fixed Update UI tests 2025-02-15 13:38:16 +01:00
try_err.rs Update UI tests 2025-02-15 13:38:16 +01:00
try_err.stderr Update UI tests 2025-02-15 13:38:16 +01:00
tuple_array_conversions.rs Update UI tests 2025-02-15 13:38:16 +01:00
tuple_array_conversions.stderr Update UI tests 2025-02-15 13:38:16 +01:00
ty_fn_sig.rs Update UI tests 2025-02-15 13:38:16 +01:00
type_complexity.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
type_complexity.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
type_id_on_box.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
type_id_on_box.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
type_id_on_box.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
type_id_on_box_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
type_id_on_box_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
type_repetition_in_bounds.rs Merge commit '3e5a02b13b' into clippy-subtree-update 2024-06-13 12:30:48 +02:00
type_repetition_in_bounds.stderr Merge commit '3e5a02b13b' into clippy-subtree-update 2024-06-13 12:30:48 +02:00
unbuffered_bytes.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unbuffered_bytes.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unchecked_duration_subtraction.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unchecked_duration_subtraction.rs Update UI tests 2025-02-15 13:38:16 +01:00
unchecked_duration_subtraction.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unconditional_recursion.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unconditional_recursion.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unicode.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unicode.rs Update UI tests 2025-02-15 13:38:16 +01:00
unicode.stderr Update UI tests 2025-02-15 13:38:16 +01:00
uninhabited_references.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
uninhabited_references.stderr Update UI tests 2025-02-15 13:38:16 +01:00
uninit.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
uninit.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
uninit_vec.rs Update UI tests 2025-02-15 13:38:16 +01:00
uninit_vec.stderr Update UI tests 2025-02-15 13:38:16 +01:00
uninlined_format_args.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
uninlined_format_args.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
uninlined_format_args.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
uninlined_format_args_panic.edition2018.fixed Update UI tests 2025-02-15 13:38:16 +01:00
uninlined_format_args_panic.edition2018.stderr Merge commit '609cd310be' into clippy-subtree-update 2024-12-26 15:15:54 +01:00
uninlined_format_args_panic.edition2021.fixed Update UI tests 2025-02-15 13:38:16 +01:00
uninlined_format_args_panic.edition2021.stderr Update UI tests 2025-02-15 13:38:16 +01:00
uninlined_format_args_panic.rs Update UI tests 2025-02-15 13:38:16 +01:00
unit_arg.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_arg.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unit_arg_empty_blocks.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unit_arg_empty_blocks.rs Update UI tests 2025-02-15 13:38:16 +01:00
unit_arg_empty_blocks.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unit_cmp.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_cmp.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_hash.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_hash.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_hash.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_return_expecting_ord.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unit_return_expecting_ord.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unknown_attribute.rs Merge commit '93f0a9a91f' into clippy-subtree-update 2024-03-07 17:19:29 +01:00
unknown_attribute.stderr Merge commit '93f0a9a91f' into clippy-subtree-update 2024-03-07 17:19:29 +01:00
unknown_clippy_lints.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unknown_clippy_lints.rs Update UI tests 2025-02-15 13:38:16 +01:00
unknown_clippy_lints.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unnecessary_box_returns.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_box_returns.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_cast.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
unnecessary_cast.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
unnecessary_cast.stderr Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
unnecessary_cast_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_cast_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_clippy_cfg.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_clippy_cfg.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_clone.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_clone.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_fallible_conversions.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_fallible_conversions.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_fallible_conversions.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_fallible_conversions_unfixable.rs Merge commit '09ac14c901' into clippyup 2023-11-02 17:35:56 +01:00
unnecessary_fallible_conversions_unfixable.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
unnecessary_filter_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_filter_map.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_find_map.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_find_map.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_first_then_check.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_first_then_check.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_first_then_check.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_fold.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_fold.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_fold.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_get_then_check.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_get_then_check.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_get_then_check.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_iter_cloned.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_iter_cloned.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_iter_cloned.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_join.fixed Merge commit '080b587854' into clippyup 2023-08-24 21:32:12 +02:00
unnecessary_join.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_join.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_lazy_eval.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_lazy_eval.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_lazy_eval.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unnecessary_lazy_eval_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_lazy_eval_unfixable.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unnecessary_literal_bound.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_literal_bound.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_literal_bound.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_literal_unwrap.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
unnecessary_literal_unwrap.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
unnecessary_literal_unwrap.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unnecessary_literal_unwrap_unfixable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_literal_unwrap_unfixable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_map_on_constructor.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_map_on_constructor.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_map_on_constructor.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_map_or.fixed Add missing ui annotations to new ui tests 2025-02-15 13:44:26 +01:00
unnecessary_map_or.rs Add missing ui annotations to new ui tests 2025-02-15 13:44:26 +01:00
unnecessary_map_or.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unnecessary_min_or_max.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_min_or_max.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_min_or_max.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_operation.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_operation.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_operation.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_os_str_debug_formatting.rs Check os_str_display MSRV instead of feature 2025-02-27 21:51:42 +01:00
unnecessary_os_str_debug_formatting.stderr Check os_str_display MSRV instead of feature 2025-02-27 21:51:42 +01:00
unnecessary_owned_empty_strings.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_owned_empty_strings.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_owned_empty_strings.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_path_debug_formatting.rs don't trigger unnecessary_debug_formatting in tests 2025-03-04 17:46:15 +09:00
unnecessary_path_debug_formatting.stderr Check os_str_display MSRV instead of feature 2025-02-27 21:51:42 +01:00
unnecessary_result_map_or_else.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_result_map_or_else.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_result_map_or_else.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_safety_comment.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_safety_comment.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_self_imports.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_self_imports.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_self_imports.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_semicolon.edition2021.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_semicolon.edition2021.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_semicolon.edition2024.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_semicolon.edition2024.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_semicolon.fixed Merge commit '51d49c1ae2' into clippy-subtree-update 2025-01-28 19:33:54 +01:00
unnecessary_semicolon.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_semicolon.stderr Merge commit '51d49c1ae2' into clippy-subtree-update 2025-01-28 19:33:54 +01:00
unnecessary_sort_by.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_sort_by.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_sort_by.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_sort_by_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_sort_by_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_sort_by_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_struct_initialization.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_struct_initialization.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_struct_initialization.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_to_owned.fixed don't call iter() on a temporary object in unnecessary_to_owned 2025-03-06 07:55:01 +09:00
unnecessary_to_owned.rs don't call iter() on a temporary object in unnecessary_to_owned 2025-03-06 07:55:01 +09:00
unnecessary_to_owned.stderr don't call iter() on a temporary object in unnecessary_to_owned 2025-03-06 07:55:01 +09:00
unnecessary_to_owned_on_split.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_to_owned_on_split.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_to_owned_on_split.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_unsafety_doc.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_unsafety_doc.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnecessary_wraps.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unnecessary_wraps.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unneeded_field_pattern.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unneeded_field_pattern.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unneeded_struct_pattern.fixed ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
unneeded_struct_pattern.rs ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
unneeded_struct_pattern.stderr ui_test annotation cleanup 2025-02-16 16:51:35 +00:00
unneeded_wildcard_pattern.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unneeded_wildcard_pattern.rs Update UI tests 2025-02-15 13:38:16 +01:00
unneeded_wildcard_pattern.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unnested_or_patterns.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnested_or_patterns.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnested_or_patterns.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unnested_or_patterns2.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unnested_or_patterns2.rs Update UI tests 2025-02-15 13:38:16 +01:00
unnested_or_patterns2.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unreadable_literal.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unreadable_literal.rs Update UI tests 2025-02-15 13:38:16 +01:00
unreadable_literal.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unsafe_derive_deserialize.rs RFC 2383: Stabilize lint_reasons in Clippy 🖇️ 2024-06-25 17:50:48 +02:00
unsafe_derive_deserialize.stderr RFC 2383: Stabilize lint_reasons in Clippy 🖇️ 2024-06-25 17:50:48 +02:00
unsafe_removed_from_name.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unsafe_removed_from_name.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unseparated_prefix_literals.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unseparated_prefix_literals.rs Update UI tests 2025-02-15 13:38:16 +01:00
unseparated_prefix_literals.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unused_async.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_async.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_enumerate_index.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_enumerate_index.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_enumerate_index.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unused_format_specs.1.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_format_specs.2.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_format_specs.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_format_specs.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unused_io_amount.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_io_amount.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unused_peekable.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_peekable.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_result_ok.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unused_result_ok.rs Update UI tests 2025-02-15 13:38:16 +01:00
unused_result_ok.stderr Merge remote-tracking branch 'upstream/master' into rustup 2025-02-20 15:26:07 +01:00
unused_rounding.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unused_rounding.rs Update UI tests 2025-02-15 13:38:16 +01:00
unused_rounding.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unused_self.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unused_self.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unused_trait_names.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unused_trait_names.rs Update UI tests 2025-02-15 13:38:16 +01:00
unused_trait_names.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unused_unit.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unused_unit.rs Update UI tests 2025-02-15 13:38:16 +01:00
unused_unit.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unwrap.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_expect_used.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_expect_used.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_in_result.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_in_result.stderr Update UI tests 2025-02-15 13:38:16 +01:00
unwrap_or.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_or.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_or.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
unwrap_or_else_default.fixed Update UI tests 2025-02-15 13:38:16 +01:00
unwrap_or_else_default.rs Update UI tests 2025-02-15 13:38:16 +01:00
unwrap_or_else_default.stderr Update UI tests 2025-02-15 13:38:16 +01:00
update-all-references.sh Merge commit '37f4c1725d' into clippyup 2023-07-02 14:59:02 +02:00
upper_case_acronyms.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
upper_case_acronyms.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
upper_case_acronyms.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
use_self.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
use_self.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
use_self.stderr Update UI tests 2025-02-15 13:38:16 +01:00
use_self_trait.fixed Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
use_self_trait.rs Make fmt (weirdly) happy 2025-02-15 13:38:43 +01:00
use_self_trait.stderr Update UI tests 2025-02-15 13:38:16 +01:00
used_underscore_binding.rs Update UI tests 2025-02-15 13:38:16 +01:00
used_underscore_binding.stderr Update UI tests 2025-02-15 13:38:16 +01:00
used_underscore_items.rs Update UI tests 2025-02-15 13:38:16 +01:00
used_underscore_items.stderr Update UI tests 2025-02-15 13:38:16 +01:00
useful_asref.rs Update UI tests 2025-02-15 13:38:16 +01:00
useless_asref.fixed prevent useless_asref from suggesting .clone() on types without the Clone trait 2025-02-16 05:59:53 +09:00
useless_asref.rs prevent useless_asref from suggesting .clone() on types without the Clone trait 2025-02-16 05:59:53 +09:00
useless_asref.stderr prevent useless_asref from suggesting .clone() on types without the Clone trait 2025-02-16 05:59:53 +09:00
useless_attribute.fixed Update UI tests 2025-02-15 13:38:16 +01:00
useless_attribute.rs Update UI tests 2025-02-15 13:38:16 +01:00
useless_attribute.stderr Update UI tests 2025-02-15 13:38:16 +01:00
useless_conversion.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_conversion.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_conversion.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_conversion_try.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_conversion_try.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_nonzero_new_unchecked.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_nonzero_new_unchecked.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_nonzero_new_unchecked.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_vec.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
useless_vec.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
vec.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
vec.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
vec.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
vec_box_sized.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
vec_box_sized.stderr Update UI tests 2025-02-15 13:38:16 +01:00
vec_init_then_push.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
vec_init_then_push.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
vec_resize_to_zero.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
vec_resize_to_zero.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
vec_resize_to_zero.stderr Merge commit '10136170fe' into clippy-subtree-update 2024-02-27 15:50:17 +01:00
verbose_file_reads.rs Update UI tests 2025-02-15 13:38:16 +01:00
verbose_file_reads.stderr Update UI tests 2025-02-15 13:38:16 +01:00
waker_clone_wake.fixed Update UI tests 2025-02-15 13:38:16 +01:00
waker_clone_wake.rs Update UI tests 2025-02-15 13:38:16 +01:00
waker_clone_wake.stderr Update UI tests 2025-02-15 13:38:16 +01:00
while_float.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
while_float.stderr Update UI tests 2025-02-15 13:38:16 +01:00
while_let_loop.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
while_let_loop.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
while_let_on_iterator.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
while_let_on_iterator.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
while_let_on_iterator.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wild_in_or_pats.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
wild_in_or_pats.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_enum_match_arm.fixed Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_enum_match_arm.rs Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_enum_match_arm.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports.fixed Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports.rs Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports_2021.edition2018.fixed Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports_2021.edition2018.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports_2021.edition2021.fixed Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports_2021.edition2021.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports_2021.rs Update UI tests 2025-02-15 13:38:16 +01:00
wildcard_imports_cfgtest.rs Update UI tests 2025-02-15 13:38:16 +01:00
write_literal.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
write_literal.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
write_literal.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
write_literal_2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
write_literal_2.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
write_with_newline.fixed Fix new tests updates 2025-02-15 13:38:42 +01:00
write_with_newline.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
write_with_newline.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
writeln_empty_string.fixed Update UI tests 2025-02-15 13:38:16 +01:00
writeln_empty_string.rs Update UI tests 2025-02-15 13:38:16 +01:00
writeln_empty_string.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wrong_self_convention.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
wrong_self_convention.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
wrong_self_convention2.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
wrong_self_convention2.stderr Update UI tests 2025-02-15 13:38:16 +01:00
wrong_self_conventions_mut.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
wrong_self_conventions_mut.stderr Update UI tests 2025-02-15 13:38:16 +01:00
zero_div_zero.rs Update UI tests 2025-02-15 13:38:16 +01:00
zero_div_zero.stderr Update UI tests 2025-02-15 13:38:16 +01:00
zero_offset.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
zero_offset.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
zero_ptr.fixed Update UI tests 2025-02-15 13:38:16 +01:00
zero_ptr.rs Update UI tests 2025-02-15 13:38:16 +01:00
zero_ptr.stderr Update UI tests 2025-02-15 13:38:16 +01:00
zero_ptr_no_std.fixed Update UI tests 2025-02-15 13:38:16 +01:00
zero_ptr_no_std.rs Update UI tests 2025-02-15 13:38:16 +01:00
zero_ptr_no_std.stderr Update UI tests 2025-02-15 13:38:16 +01:00
zero_repeat_side_effects.fixed Update UI tests 2025-02-15 13:38:16 +01:00
zero_repeat_side_effects.rs Update UI tests 2025-02-15 13:38:16 +01:00
zero_repeat_side_effects.stderr Update UI tests 2025-02-15 13:38:16 +01:00
zero_sized_btreemap_values.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
zero_sized_btreemap_values.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
zero_sized_hashmap_values.rs Fix new tests updates 2025-02-15 13:38:42 +01:00
zero_sized_hashmap_values.stderr Fix new tests updates 2025-02-15 13:38:42 +01:00
zombie_processes.rs Update UI tests 2025-02-15 13:38:16 +01:00
zombie_processes.stderr Update UI tests 2025-02-15 13:38:16 +01:00
zombie_processes_fixable.fixed Update UI tests 2025-02-15 13:38:16 +01:00
zombie_processes_fixable.rs Update UI tests 2025-02-15 13:38:16 +01:00
zombie_processes_fixable.stderr Update UI tests 2025-02-15 13:38:16 +01:00
{literal_string_with_formatting_args}.rs Add missing ui annotations to new ui tests 2025-02-15 13:44:26 +01:00