rust/tests
lengyijun fc061890d6 [iter_overeager_cloned]: detect .cloned().filter() and .cloned().find()
Key idea:
```
// before
iter.cloned().filter(|x| unimplemented!() )
// after
iter.filter(|&x| unimplemented!() ).cloned()

// before
iter.cloned().filter( foo )
// after
iter.filter(|&x| foo(x) ).cloned()
```
2023-08-14 09:13:01 +08:00
..
test_utils
ui [iter_overeager_cloned]: detect .cloned().filter() and .cloned().find() 2023-08-14 09:13:01 +08:00
ui-cargo
ui-internal Update ui test crate to auto-detect aux build crate kind 2023-08-11 14:02:35 +00:00
ui-toml Update ui test crate to auto-detect aux build crate kind 2023-08-11 14:02:35 +00:00
workspace_test
check-fmt.rs
clippy.toml
compile-test.rs Do not bless by default in ui tests 2023-08-13 13:25:48 +00:00
dogfood.rs
headers.rs Make a panic message more informative if binary files are accidentally created somewhere in the test folder 2023-08-11 14:01:53 +00:00
integration.rs
lint_message_convention.rs
missing-test-files.rs
versioncheck.rs
workspace.rs