about summary refs log tree commit diff
path: root/src/test/ui/impl-trait/explicit-generic-args-with-impl-trait
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-85/+0
2023-01-05Tweak wording of fn call with wrong number of argsEsteban Küber-1/+1
2022-06-06Deactivate feature gate explicit_generic_args_with_impl_traitNick Cameron-31/+25
Signed-off-by: Nick Cameron <nrc@ncameron.org>
2022-02-26Provide extra note if synthetic type args are specifiedGary Guo-0/+1
2021-11-08Add a note about feature(explicit_generic_args_with_impl_trait) to the ↵Jakub Kądziołka-0/+3
relevant error message
2021-08-11Modify structured suggestion outputEsteban Küber-1/+1
* On suggestions that include deletions, use a diff inspired output format * When suggesting addition, use `+` as underline * Color highlight modified span
2021-08-03Bless testGiacomo Stevanato-3/+3
2021-08-03Add regression testsGiacomo Stevanato-0/+38
2021-08-02Implement a `explicit_generic_args_with_impl_trait` feature gateGary Guo-0/+49
When this gate is enabled, explicit generic arguments can be specified even if `impl Trait` is used in argument position. Generic arguments can only be specified for explicit generic parameters but not for the synthetic type parameters from `impl Trait`