about summary refs log tree commit diff
path: root/tests/ui/eta.fixed
AgeCommit message (Collapse)AuthorLines
2019-06-12redundant_closure_for_method_calls fixes:Grzegorz-0/+19
lint does not trigger when there is a difference in mutability lint does not trigger when the method belongs to a trait which is not implemebted directly (Deref)
2019-06-10Workaround for rust-lang/rustfmt#3615Alexander Shabalin-1/+1
2019-06-10Fixing eta with respect to lazy evaluation.Alexander Shabalin-2/+9
2019-05-30Rustup to https://github.com/rust-lang/rust/pull/61203Philipp Hansch-3/+3
Migrates all trait objects to use `dyn`
2019-05-16Also rename the lint in test filesflip1995-1/+1
2019-05-16Split redundant_closure lintMichael Wright-1/+5
Move the method checking into a new lint called `redundant_closures_for_method_calls` and put it in the pedantic group. This aspect of the lint seems more controversial than the rest. cc #3942
2019-04-26Add two more tests for redundant_closurePhilipp Hansch-0/+24
These two cases were fixed by #4008. Closes #1439 changelog: none
2019-04-20redundant closure triggers for fnptrs and closuresGrzegorz-0/+11
2019-04-19redundant closure for functions restricted to FnDefsGrzegorz-0/+5
2019-04-10Add // run-rustfix for eta.rs testPhilipp Hansch-0/+135
cc #3071, #3630