rust/tests/ui/suggestions
Matthias Krüger 980bf1979e
Rollup merge of #106859 - tialaramex:master, r=Nilstrieb
Suggestion for type mismatch when we need a u8 but the programmer wrote a char literal

Today Rust just points out that we have a char and we need a u8, but if I wrote 'A' then I could fix this by just writing b'A' instead. This code should detect the case where we're about to report a type mismatch of this kind, and the programmer wrote a char literal, and the char they wrote is ASCII, so therefore just prefixing b to make a byte literal will do what they meant.

I have definitely written this mistake more than once, it's not difficult to figure out what to do, but the compiler might as well tell us anyway.

I provided a test with two simple examples where the suggestion is appropriate, and one where it is not because the char literal is not ASCII, showing that the suggestion is only triggered in the former cases.

I have contributed only a small typo doc fix before, so this is my first substantive rustc change.
2023-01-15 01:01:36 +01:00
..
auxiliary Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-doc-hidden-variant-for-enum Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-ref Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lifetimes Fix invalid syntax in impl Trait parameter type suggestions for E0311 2023-01-11 14:49:55 -08:00
abi-typo.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
abi-typo.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
abi-typo.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
adt-param-with-implicit-sized-bound.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
adt-param-with-implicit-sized-bound.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
args-instead-of-tuple-errors.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
args-instead-of-tuple-errors.stderr Emit a hint for bad call return types due to generic arguments 2023-01-13 13:34:55 +09:00
args-instead-of-tuple.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
args-instead-of-tuple.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
args-instead-of-tuple.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
as-ref-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
as-ref-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
as-ref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
as-ref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc_fn_without_self.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc_fn_without_self.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-const-as-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-const-as-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-const-as-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-const-as-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-ct-for-assoc-method.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-ct-for-assoc-method.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-type-in-method-return.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assoc-type-in-method-return.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
async-fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
attribute-typos.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
attribute-typos.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-hex-float-lit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bad-hex-float-lit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bool_typo_err_suggest.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bool_typo_err_suggest.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-for-loop-head.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-for-loop-head.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bound-suggestions.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bound-suggestions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bound-suggestions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
box-future-wrong-output.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
box-future-wrong-output.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
boxed-variant-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
boxed-variant-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-boxed.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-boxed.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-on-missing.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-on-missing.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-on-unimplemented-ctor.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-on-unimplemented-ctor.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-on-unimplemented-fn-ptr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
call-on-unimplemented-fn-ptr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
chain-method-call-mutation-in-place.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
chain-method-call-mutation-in-place.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
clone-on-unconstrained-borrowed-type-param.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
clone-on-unconstrained-borrowed-type-param.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
clone-on-unconstrained-borrowed-type-param.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-in-struct-pat.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-in-struct-pat.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-no-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-no-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
const-pat-non-exaustive-let-new-var.rs Migrate pattern matching 2023-01-11 14:40:02 -08:00
const-pat-non-exaustive-let-new-var.stderr Migrate pattern matching 2023-01-11 14:40:02 -08:00
constrain-suggest-ice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
constrain-suggest-ice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
constrain-trait.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
constrain-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
constrain-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
copied-and-cloned.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
copied-and-cloned.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
copied-and-cloned.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
core-std-import-order-issue-83564.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
core-std-import-order-issue-83564.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
count2len.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
count2len.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
crate-or-module-typo.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
crate-or-module-typo.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deref-path-method.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
deref-path-method.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-clone-for-eq.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-clone-for-eq.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-clone-for-eq.stderr Note predicate span on ImplDerivedObligation 2023-01-11 19:46:45 +00:00
derive-macro-missing-bounds.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-macro-missing-bounds.stderr Note predicate span on ImplDerivedObligation 2023-01-11 19:46:45 +00:00
derive-trait-for-method-call.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
derive-trait-for-method-call.stderr Tweak output 2023-01-11 19:31:34 +00:00
do-not-attempt-to-add-suggestions-with-no-changes.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
do-not-attempt-to-add-suggestions-with-no-changes.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-deref-inside-macro-issue-58298.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-deref-inside-macro-issue-58298.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-pin-array-dot-set.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-pin-array-dot-set.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-try_into-in-macros.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-try_into-in-macros.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-ufcs-for-const.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-suggest-ufcs-for-const.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-try-removing-the-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-try-removing-the-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-wrap-ambiguous-receivers.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
dont-wrap-ambiguous-receivers.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
enum-method-probe.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
enum-method-probe.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
enum-method-probe.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
enum-variant-arg-mismatch.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
enum-variant-arg-mismatch.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
expected-boxed-future-isnt-pinned.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
expected-boxed-future-isnt-pinned.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-access-considering-privacy.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-access-considering-privacy.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-access.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-access.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-access.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-has-method.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
field-has-method.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-ctor-passed-as-arg-where-it-should-have-been-called.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-ctor-passed-as-arg-where-it-should-have-been-called.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-missing-lifetime-in-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-missing-lifetime-in-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-needing-specified-return-type-param.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-needing-specified-return-type-param.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-or-tuple-struct-with-underscore-args.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-or-tuple-struct-with-underscore-args.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-or-tuple-struct-without-args.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-or-tuple-struct-without-args.stderr label where constructor is defined and note that it should be called 2023-01-11 19:53:15 +00:00
fn-to-method-deeply-nested.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-to-method-deeply-nested.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-to-method.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-to-method.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-trait-notation.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-trait-notation.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
fn-trait-notation.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
for-i-in-vec.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
for-i-in-vec.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
for-i-in-vec.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
format-borrow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
format-borrow.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-let-typo.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-let-typo.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-then-neeing-semi.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
if-then-neeing-semi.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ignore-nested-field-binding.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ignore-nested-field-binding.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ignore-nested-field-binding.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
imm-ref-trait-object-literal-bound-regions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
imm-ref-trait-object-literal-bound-regions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
imm-ref-trait-object-literal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
imm-ref-trait-object-literal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
imm-ref-trait-object.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
imm-ref-trait-object.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-on-dyn-trait-with-implicit-static-bound-needing-more-suggestions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-on-dyn-trait-with-implicit-static-bound-needing-more-suggestions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-on-dyn-trait-with-implicit-static-bound.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-on-dyn-trait-with-implicit-static-bound.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-missing-lifetime-gated.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-missing-lifetime-gated.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-missing-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-missing-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-return-trailing-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-return-trailing-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-with-missing-bounds.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-with-missing-bounds.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-with-missing-trait-bounds-in-arg.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-with-missing-trait-bounds-in-arg.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
impl-trait-with-missing-trait-bounds-in-arg.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-trait-for-method-call.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
import-trait-for-method-call.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner_type2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner_type2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner_type.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner_type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
inner_type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
into-convert.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
into-convert.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
into-str.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
into-str.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
invalid-bin-op.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
invalid-bin-op.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21673.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21673.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51055-missing-semicolon-between-call-and-tuple.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51055-missing-semicolon-between-call-and-tuple.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52820.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52820.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52820.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-53692.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-53692.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-53692.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-57672.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-59819.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-59819.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-59819.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61226.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61226.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61226.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61963.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61963.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-62843.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-62843.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-64252-self-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-64252-self-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-66968-suggest-sorted-words.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-66968-suggest-sorted-words.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68049-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68049-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68049-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-68049-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-71394-no-from-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-71394-no-from-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-72766.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-72766.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-79843-impl-trait-with-missing-bounds-on-async-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-79843-impl-trait-with-missing-bounds-on-async-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81098.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81098.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81839.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81839.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82361.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82361.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82361.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82566-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82566-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82566-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82566-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83892.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83892.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83892.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83943.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83943.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83943.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84592.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84592.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84700.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84700.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973-blacklist.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973-blacklist.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973-negative.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973-negative.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-84973.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85347.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85347.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85943-no-suggest-unsized-indirection-in-where-clause.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85943-no-suggest-unsized-indirection-in-where-clause.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85945-check-where-clause-before-suggesting-unsized.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85945-check-where-clause-before-suggesting-unsized.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-86100-tuple-paren-comma.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-86100-tuple-paren-comma.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-86667.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-86667.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-88730.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-88730.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-89064.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-89064.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-89333.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-89333.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-90213-expected-boxfuture-self-ice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-90213-expected-boxfuture-self-ice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-90974.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-90974.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-96223.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-96223.stderr Note predicate span on ImplDerivedObligation 2023-01-11 19:46:45 +00:00
issue-96555.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-96555.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97677.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97677.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97677.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97704.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97704.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97704.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97760.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-97760.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-98500.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-98500.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-99080.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-99080.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-99240-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-99240-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-99240.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-99240.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101065.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101065.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101065.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101421.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101421.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101465.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101465.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101623.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101623.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101984.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101984.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102354.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102354.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102892.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102892.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103112.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103112.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104086-suggest-let.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104086-suggest-let.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104287.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104287.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104327.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104327.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104328.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-104328.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105226.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105226.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105494.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105494.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105645.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105645.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-105761-suggest-self-for-closure.fixed Provide help on closures capturing self causing borrow checker errors 2023-01-12 20:17:25 +08:00
issue-105761-suggest-self-for-closure.rs Provide help on closures capturing self causing borrow checker errors 2023-01-12 20:17:25 +08:00
issue-105761-suggest-self-for-closure.stderr Provide help on closures capturing self causing borrow checker errors 2023-01-12 20:17:25 +08:00
issue-106443-sugg-clone-for-arg.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-106443-sugg-clone-for-arg.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-106443-sugg-clone-for-bound.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-106443-sugg-clone-for-bound.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
js-style-comparison-op-separate-eq-token.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
js-style-comparison-op-separate-eq-token.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
js-style-comparison-op.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
js-style-comparison-op.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
js-style-comparison-op.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
let-binding-init-expr-as-ty.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
let-binding-init-expr-as-ty.stderr When suggesting writing a fully qualified path probe for appropriate types 2023-01-11 21:30:10 +00:00
many-type-ascription.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
many-type-ascription.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-ergonomics.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-ergonomics.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-needing-semi.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-needing-semi.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-prev-arm-needing-semi.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-prev-arm-needing-semi.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-with-different-arm-types-as-stmt-instead-of-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
match-with-different-arm-types-as-stmt-instead-of-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
method-access-to-range-literal-typo.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
method-access-to-range-literal-typo.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
method-access-to-range-literal-typo.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
method-missing-parentheses.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
method-missing-parentheses.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mismatched-types-numeric-from.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mismatched-types-numeric-from.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-assoc-fn-applicable-suggestions.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-assoc-fn-applicable-suggestions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-assoc-fn-applicable-suggestions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-assoc-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-assoc-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-assoc-type-bound-restriction.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl-3.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-derive-copy-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-manual-copy-impl-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-manual-copy-impl-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-manual-copy-impl-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-manual-copy-impl.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-manual-copy-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-bound-in-manual-copy-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-lifetime-in-assoc-const-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-lifetime-in-assoc-const-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-lifetime-specifier.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-lifetime-specifier.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-lt-for-hrtb.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-lt-for-hrtb.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-trait-item.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-trait-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-trait-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-type-param-used-in-param.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-type-param-used-in-param.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
missing-type-param-used-in-param.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-generic-to-trait-in-method-with-params.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-generic-to-trait-in-method-with-params.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multibyte-escapes.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
multibyte-escapes.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-needed-by-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-needed-by-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-ref-reassignment.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-ref-reassignment.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
negative-literal-index.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
negative-literal-index.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
negative-literal-index.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nested-non-tuple-tuple-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
nested-non-tuple-tuple-struct.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-extern-crate-in-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
no-extern-crate-in-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
non-existent-field-present-in-subfield-recursion-limit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
non-existent-field-present-in-subfield-recursion-limit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
non-existent-field-present-in-subfield.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
non-existent-field-present-in-subfield.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
non-existent-field-present-in-subfield.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-references-self.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-references-self.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-should-use-self.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-should-use-self.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-should-use-where-sized.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-should-use-where-sized.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
object-unsafe-trait-should-use-where-sized.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
opaque-type-error.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
opaque-type-error.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-content-move2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-content-move2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-content-move-from-tuple-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-content-move-from-tuple-match.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-content-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-content-move.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-to-bool.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
option-to-bool.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parenthesized-deref-suggestion.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
parenthesized-deref-suggestion.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-by-value.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-by-value.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-display.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-display.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pattern-slice-vec.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pattern-slice-vec.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pattern-slice-vec.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pattern-struct-with-slice-vec-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
pattern-struct-with-slice-vec-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
private-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
private-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
raw-byte-string-prefix.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
raw-byte-string-prefix.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
raw-name-use-suggestion.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
raw-name-use-suggestion.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-from-semicolon-trailing-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-from-semicolon-trailing-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-invalid-float.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-invalid-float.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-invalid-float.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-missing-turbofish-surrounding-angle-braket.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
recover-missing-turbofish-surrounding-angle-braket.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ref-pattern-binding.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ref-pattern-binding.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
ref-pattern-binding.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removal-of-multiline-trait-bound-in-where-clause.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
removal-of-multiline-trait-bound-in-where-clause.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
remove-as_str.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
remove-as_str.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
restrict-type-argument.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
restrict-type-argument.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
restrict-type-not-param.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
restrict-type-not-param.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-bindings-multi.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-bindings-multi.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-bindings.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-bindings.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-closures.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-closures.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-cycle-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-cycle-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-cycle.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-cycle.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-elided-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-elided-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-without-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-without-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
shadowed-lplace-method-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
shadowed-lplace-method-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
shadowed-lplace-method.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
shadowed-lplace-method.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
shadowed-lplace-method.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
slice-issue-87994.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
slice-issue-87994.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-field-type-including-single-colon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-field-type-including-single-colon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-initializer-comma.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-initializer-comma.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
struct-initializer-comma.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
sugg_with_positional_args_and_debug_fmt.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
sugg_with_positional_args_and_debug_fmt.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
sugg-else-for-closure.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
sugg-else-for-closure.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
sugg-else-for-closure.stderr Emit a hint for bad call return types due to generic arguments 2023-01-13 13:34:55 +09:00
suggest_print_over_printf.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest_print_over_printf.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-add-self.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-add-self.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-adding-reference-to-trait-assoc-item.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-adding-reference-to-trait-assoc-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-adding-reference-to-trait-assoc-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-deref.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-deref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish-placeholder.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish-placeholder.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish-through-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish-through-deref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assoc-fn-call-with-turbofish.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-blanket-impl-local-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-blanket-impl-local-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-borrow-to-dyn-object.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-borrow-to-dyn-object.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-box.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-box.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-box.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-change-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-change-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-closure-return-type-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-closure-return-type-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-closure-return-type-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-closure-return-type-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-closure-return-type-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-closure-return-type-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-dereferencing-index.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-dereferencing-index.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-dereferencing-index.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-full-enum-variant-for-local-module.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-full-enum-variant-for-local-module.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-imm-mut-trait-implementations.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-imm-mut-trait-implementations.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-impl-trait-lifetime.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-impl-trait-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-impl-trait-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-labels.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-labels.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-let-for-assignment.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-let-for-assignment.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-let-for-assignment.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-methods.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-methods.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-move-lifetimes.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-move-lifetimes.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-move-types.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-move-types.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-mut-method-for-loop-hashmap.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-mut-method-for-loop-hashmap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-mut-method-for-loop-hashmap.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-mut-method-for-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-mut-method-for-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-on-bare-closure-call.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-on-bare-closure-call.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-ref-macro.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-ref-macro.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-ref-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-ref-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-1.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-1.stderr Make &-removal suggestion verbose 2023-01-11 21:38:54 +00:00
suggest-remove-refs-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-2.stderr Make &-removal suggestion verbose 2023-01-11 21:38:54 +00:00
suggest-remove-refs-3.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-remove-refs-3.stderr Make &-removal suggestion verbose 2023-01-11 21:38:54 +00:00
suggest-remove-refs-4.fixed Make &-removal suggestion verbose 2023-01-11 21:38:54 +00:00
suggest-remove-refs-4.rs Make &-removal suggestion verbose 2023-01-11 21:38:54 +00:00
suggest-remove-refs-4.stderr Make &-removal suggestion verbose 2023-01-11 21:38:54 +00:00
suggest-remove-refs-5.fixed Use the root trait predicate to determine whether to remove references 2023-01-11 21:39:07 +00:00
suggest-remove-refs-5.rs Use the root trait predicate to determine whether to remove references 2023-01-11 21:39:07 +00:00
suggest-remove-refs-5.stderr Use the root trait predicate to determine whether to remove references 2023-01-11 21:39:07 +00:00
suggest-semicolon-for-fn-in-extern-block.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semicolon-for-fn-in-extern-block.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-semicolon-for-fn-in-extern-block.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-split-at-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-split-at-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-std-when-using-type.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-std-when-using-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-std-when-using-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-swapping-self-ty-and-trait-edition-2021.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-swapping-self-ty-and-trait-edition-2021.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-swapping-self-ty-and-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-swapping-self-ty-and-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-trait-items.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-trait-items.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-tryinto-edition-change.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-tryinto-edition-change.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-using-chars.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-using-chars.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-variants.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-variants.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
too-many-field-suggestions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
too-many-field-suggestions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-with-missing-associated-type-restriction-fixable.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-with-missing-associated-type-restriction-fixable.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-with-missing-associated-type-restriction-fixable.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-with-missing-associated-type-restriction.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
trait-with-missing-associated-type-restriction.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
try-operator-dont-suggest-semicolon.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
try-operator-dont-suggest-semicolon.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
try-removing-the-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
try-removing-the-field.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-and-other-error.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-and-other-error.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-let.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-let.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-method.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-method.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-method.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path-in-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path-in-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-path.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-variant.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-variant.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-ascription-instead-of-variant.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-mismatch-byte-literal.rs Improve E0308: suggest user meant to use byte literal, w/ tests and fix 2023-01-14 21:27:14 +00:00
type-mismatch-byte-literal.stderr Improve E0308: suggest user meant to use byte literal, w/ tests and fix 2023-01-14 21:27:14 +00:00
type-mismatch-struct-field-shorthand-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-mismatch-struct-field-shorthand-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-mismatch-struct-field-shorthand.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-mismatch-struct-field-shorthand.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-mismatch-struct-field-shorthand.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-not-found-in-adt-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
type-not-found-in-adt-field.stderr Render missing generics suggestion verbosely 2023-01-12 22:04:30 +00:00
undeclared-module-alloc.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
undeclared-module-alloc.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unnamable-types.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unnamable-types.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unnecessary_dot_for_floating_point_literal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unnecessary_dot_for_floating_point_literal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsized-function-parameter.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsized-function-parameter.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unsized-function-parameter.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unused-closure-argument.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unused-closure-argument.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-placement-resolve.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-placement-resolve.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-placement-resolve.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-placement-typeck.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-placement-typeck.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-placement-typeck.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-type-argument-instead-of-assoc-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
use-type-argument-instead-of-assoc-type.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
while-let-typo.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
while-let-typo.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00