rust/tests/ui/borrowck
Tomasz Miąsko c678acd3a2 Leave promoteds untainted by errors when borrowck fails
Previously, when borrowck failed it would taint all promoteds within the MIR
body. An attempt to evaluated the promoteds would subsequently fail with
spurious "note: erroneous constant used". For example:

```console
...
note: erroneous constant used
 --> tests/ui/borrowck/tainted-promoteds.rs:7:9
  |
7 |     a = &0 * &1 * &2 * &3;
  |         ^^

note: erroneous constant used
 --> tests/ui/borrowck/tainted-promoteds.rs:7:14
  |
7 |     a = &0 * &1 * &2 * &3;
  |              ^^

note: erroneous constant used
 --> tests/ui/borrowck/tainted-promoteds.rs:7:19
  |
7 |     a = &0 * &1 * &2 * &3;
  |                   ^^

note: erroneous constant used
 --> tests/ui/borrowck/tainted-promoteds.rs:7:24
  |
7 |     a = &0 * &1 * &2 * &3;
  |                        ^^
```

Borrowck failure doesn't indicate that there is anything wrong with
promoteds. Leave them untainted.
2023-04-30 23:57:47 +02:00
..
access-mode-in-closures.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
access-mode-in-closures.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
anonymous-region-in-apit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
anonymous-region-in-apit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assign_mutable_fields.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assign_mutable_fields.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
assign-never-type.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
async-reference-generality.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
async-reference-generality.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bindings-after-at-or-patterns-slice-patterns-box-patterns.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
bindings-after-at-or-patterns-slice-patterns-box-patterns.stderr Run check_match and check_liveness when MIR is built instead of having an explicit phase for them 2023-04-21 22:32:38 +00:00
borrow-immutable-upvar-mutation-impl-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-immutable-upvar-mutation-impl-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-immutable-upvar-mutation.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-immutable-upvar-mutation.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-borrowed.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-borrowed.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-deref-mutability-ok.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-deref-mutability.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-deref-mutability.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-mutability-ok.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-mutability.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-raw-address-of-mutability.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-tuple-fields.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrow-tuple-fields.stderr Account for field access when looking for inner-most path in expression 2023-01-17 02:47:50 +00:00
borrowck-access-permissions.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-access-permissions.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-and-init.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-and-init.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-anon-fields-struct.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-anon-fields-struct.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-anon-fields-tuple.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-anon-fields-tuple.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-anon-fields-variant.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-anon-fields-variant.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-argument.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-argument.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-comp-idx.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-comp-idx.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-comp.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-comp.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-assign-to-andmut-in-aliasable-loc.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-to-andmut-in-aliasable-loc.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-to-andmut-in-borrowed-loc.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-to-andmut-in-borrowed-loc.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-assign-to-constants.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-to-constants.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assign-to-subfield.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-assignment-to-static-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-auto-mut-ref-to-immut-var.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-auto-mut-ref-to-immut-var.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-autoref-3261.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-autoref-3261.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-bad-nested-calls-free.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-bad-nested-calls-free.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-bad-nested-calls-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-bad-nested-calls-move.stderr Account for * when looking for inner-most path in expression 2023-01-17 02:45:11 +00:00
borrowck-binding-mutbl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-block-uninit.rs typos 2023-04-17 09:16:07 +02:00
borrowck-block-uninit.stderr typos 2023-04-17 09:16:07 +02:00
borrowck-borrow-from-expr-block.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-from-owned-ptr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-from-owned-ptr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-from-stack-variable.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-from-stack-variable.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-from-temporary.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-from-temporary.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-immut-deref-of-box-as-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-immut-deref-of-box-as-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-mut-base-ptr-in-aliasable-loc.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-mut-base-ptr-in-aliasable-loc.stderr Provide structured suggestion for binding needing type on E0594 2023-02-03 18:53:27 +00:00
borrowck-borrow-mut-object-twice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-mut-object-twice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-of-mut-base-ptr-safe.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-overloaded-auto-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-overloaded-auto-deref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-overloaded-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrow-overloaded-deref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrowed-uniq-rvalue-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrowed-uniq-rvalue-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrowed-uniq-rvalue.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrowed-uniq-rvalue.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-borrowed-uniq-rvalue.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-box-sensitivity.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-break-uninit-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-break-uninit-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-break-uninit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-break-uninit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-mut-and-imm.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-mut-and-imm.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-closures-mut-of-imm.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-mut-of-imm.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-mut-of-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-mut-of-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-slice-patterns-ok.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-slice-patterns.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-slice-patterns.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-two-imm.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-two-mut-fail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-two-mut-fail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-two-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-two-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-unique-imm.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-unique-imm.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-unique.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-unique.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-use-after-free.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-closures-use-after-free.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-consume-unsize-vec.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-consume-unsize-vec.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-consume-upcast-box.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-consume-upcast-box.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-describe-lvalue.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-describe-lvalue.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-drop-from-guard.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-drop-from-guard.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-escaping-closure-error-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-escaping-closure-error-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-escaping-closure-error-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-escaping-closure-error-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-field-sensitivity-rpass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-field-sensitivity.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-field-sensitivity.stderr Account for field access when looking for inner-most path in expression 2023-01-17 02:47:50 +00:00
borrowck-fixed-length-vecs.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-fn-in-const-a.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-fn-in-const-a.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-fn-in-const-c.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-fn-in-const-c.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-for-loop-correct-cmt-for-pattern.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-for-loop-correct-cmt-for-pattern.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-for-loop-head-linkage.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-for-loop-head-linkage.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-for-loop-uninitialized-binding.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-for-loop-uninitialized-binding.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-freeze-frozen-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-if-no-else.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-if-no-else.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-if-with-else.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-if-with-else.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-imm-ref-to-mut-rec-field-issue-3162-c.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-imm-ref-to-mut-rec-field-issue-3162-c.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-in-static.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-in-static.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-in-called-fn-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-in-called-fn-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-in-fn-expr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-in-fn-expr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-in-fru.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-in-fru.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-op-equal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-op-equal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-plus-equal.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-init-plus-equal.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-insert-during-each.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-insert-during-each.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-2657-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-2657-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-2657-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-2657-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-2657-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-14498.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-14498.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-issue-48962.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-issue-48962.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-args.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow-if.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow-if.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow-match.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-lend-flow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-lend-flow.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-blocks-move-cc.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-blocks-move-cc.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-loan-blocks-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-blocks-move.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-loan-blocks-mut-uniq.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-blocks-mut-uniq.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-in-overloaded-op.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-in-overloaded-op.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-of-static-data-issue-27616.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-of-static-data-issue-27616.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-loan-rcvr-overloaded-op.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-rcvr-overloaded-op.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-loan-rcvr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-rcvr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-vec-content.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-loan-vec-content.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-local-borrow-outlives-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-local-borrow-outlives-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-local-borrow-with-panic-outlives-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-local-borrow-with-panic-outlives-fn.stderr Account for field access when looking for inner-most path in expression 2023-01-17 02:47:50 +00:00
borrowck-local-borrow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-macro-interaction-issue-6304.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-match-already-borrowed.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-match-already-borrowed.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-match-binding-is-assignment.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-match-binding-is-assignment.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-by-capture-ok.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-by-capture.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-by-capture.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-move-error-with-note.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-error-with-note.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-error-with-note.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-from-subpath-of-borrowed-path.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-from-subpath-of-borrowed-path.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-move-from-unsafe-ptr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-from-unsafe-ptr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-in-irrefut-pat.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-in-irrefut-pat.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-moved-value-into-closure.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-moved-value-into-closure.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-mut-base-ptr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-mut-base-ptr.stderr Account for * when looking for inner-most path in expression 2023-01-17 02:45:11 +00:00
borrowck-move-out-from-array-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-match.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-no-overlap-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-no-overlap-match.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-no-overlap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use-match.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use-no-overlap-match.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use-no-overlap-match.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use-no-overlap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array-use.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-from-array.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-overloaded-auto-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-overloaded-auto-deref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-overloaded-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-overloaded-deref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-static-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-static-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-struct-with-dtor.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-struct-with-dtor.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-struct-with-dtor.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-tuple-struct-with-dtor.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-tuple-struct-with-dtor.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-tuple-struct-with-dtor.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-vec-tail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-out-of-vec-tail.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-subcomponent.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-move-subcomponent.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-multiple-borrows-interior-boxes.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-multiple-captures.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-multiple-captures.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-mut-addr-of-imm-var.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-addr-of-imm-var.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-borrow-linear-errors.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-borrow-linear-errors.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-borrow-of-mut-base-ptr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-borrow-of-mut-base-ptr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-slice-of-imm-vec.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-slice-of-imm-vec.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-uniq.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mut-vec-as-imm-slice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mutate-in-guard.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-mutate-in-guard.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-no-cycle-in-exchange-heap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-no-cycle-in-exchange-heap.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-object-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-object-lifetime.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-or-init.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-or-init.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-call.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-call.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-and-overloaded-deref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-and-overloaded-deref.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-overloaded-index-autoderef.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-autoderef.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-overloaded-index-move-from-vec.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-move-from-vec.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-move-index.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-move-index.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-overloaded-index-ref-index.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-overloaded-index-ref-index.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-1.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-3.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-4.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-partial-reinit-4.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-pat-enum.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
borrowck-pat-reassign-binding.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-pat-reassign-binding.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-pat-reassign-no-binding.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-reborrow-from-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-reborrow-from-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-reborrow-from-shorter-lived-andmut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-reborrow-from-shorter-lived-andmut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-ref-mut-of-imm.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-ref-mut-of-imm.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-reinit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-reinit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-report-with-custom-diagnostic.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-report-with-custom-diagnostic.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-return-variable-on-stack-via-clone.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-return-variable-on-stack-via-clone.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-return.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-return.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-rvalues-mutable.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-scope-of-deref-issue-4666.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-array-no-overlap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-array.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-array.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-rpass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-slice-no-overlap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-slice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-slice-pattern-element-loan-slice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-static-item-in-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-storage-dead.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-storage-dead.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-struct-update-with-dtor.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-struct-update-with-dtor.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-swap-mut-base-ptr.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-swap-mut-base-ptr.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-thread-local-static-borrow-outlives-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-thread-local-static-borrow-outlives-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-trait-lifetime.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-unary-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-unary-move.stderr Account for * when looking for inner-most path in expression 2023-01-17 02:45:11 +00:00
borrowck-unboxed-closures.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-unboxed-closures.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-after-item.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-after-item.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-field-access.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-field-access.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-in-assignop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-in-assignop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-ref-chain.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit-ref-chain.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uninit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-borrow-nested.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-borrow-nested.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-union-borrow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-borrow.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-union-move-assign.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-move-assign.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-move.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-uninitialized.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-union-uninitialized.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uniq-via-lend.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uniq-via-lend.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-uniq-via-ref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-univariant-enum.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-unsafe-static-mutable-borrows.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-unused-mut-locals.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-in-index-lvalue.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-in-index-lvalue.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-mut-borrow-rpass.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-mut-borrow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-mut-borrow.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-use-uninitialized-in-cast-trait.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-uninitialized-in-cast-trait.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-uninitialized-in-cast.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-use-uninitialized-in-cast.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-element-loan.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-element-loan.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-loan-from-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-loan-from-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-move-tail.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-move-tail.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
borrowck-vec-pattern-nesting.rs Desugars drop and replace at MIR build 2023-03-03 16:33:11 +01:00
borrowck-vec-pattern-nesting.stderr Desugars drop and replace at MIR build 2023-03-03 16:33:11 +01:00
borrowck-vec-pattern-tail-element-loan.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-vec-pattern-tail-element-loan.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-while-break.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-while-break.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-while-cond.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-while-cond.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-while.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
borrowck-while.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
copy-suggestion-region-vid.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
copy-suggestion-region-vid.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
disallow-possibly-uninitialized.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
disallow-possibly-uninitialized.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
do-not-suggest-adding-move-when-closure-is-already-marked-as-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
do-not-suggest-adding-move-when-closure-is-already-marked-as-move.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
drop-in-loop.rs Add regression tests for issue 70919 2023-03-05 16:56:57 +01:00
drop-in-loop.stderr Add regression tests for issue 70919 2023-03-05 16:56:57 +01:00
fsu-moves-and-copies.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
immut-function-arguments.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
immut-function-arguments.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
immutable-arg.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
immutable-arg.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
index-mut-help-with-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
index-mut-help-with-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
index-mut-help.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
index-mut-help.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7573.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7573.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10876.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11493.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11493.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11493.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17263.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17545.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17545.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17718-static-move.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17718-static-move.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20801.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20801.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23338-params-outlive-temps-of-body.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24267-flow-exit.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24267-flow-exit.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-25793.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-25793.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-28934.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29166.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-31287-drop-in-guard.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-31287-drop-in-guard.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33819.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33819.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36082.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36082.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36082.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41962.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41962.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42344.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42344.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45199.rs Desugars drop and replace at MIR build 2023-03-03 16:33:11 +01:00
issue-45199.stderr Desugars drop and replace at MIR build 2023-03-03 16:33:11 +01:00
issue-45983.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45983.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46095.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46471.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46471.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47215-ice-from-drop-elab.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47215-ice-from-drop-elab.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47646.rs Move test files 2023-04-20 15:06:17 -03:00
issue-47646.stderr Move test files 2023-04-20 15:06:17 -03:00
issue-51117.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51117.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51301.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51301.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51348-multi-ref-mut-in-guard.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51415.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51415.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51415.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52713-bug.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52713-bug.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-52967-edition-2018-needs-two-phase-borrows.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-53432-nested-closure-outlives-borrowed-value.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-53432-nested-closure-outlives-borrowed-value.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-marks-mut-as-used.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-marks-mut-as-used.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-of-moved-out-with-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-of-moved-out-with-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-of-moved-out.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-of-moved-out.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-of-never-init.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54499-field-mutation-of-never-init.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54597-reject-move-out-of-borrow-via-pat.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54597-reject-move-out-of-borrow-via-pat.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-55492-borrowck-migrate-scans-parents.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-55492-borrowck-migrate-scans-parents.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-55552-ascribe-wildcard-to-structured-pattern.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-58776-borrowck-scans-children.rs Desugars drop and replace at MIR build 2023-03-03 16:33:11 +01:00
issue-58776-borrowck-scans-children.stderr Desugars drop and replace at MIR build 2023-03-03 16:33:11 +01:00
issue-62007-assign-box.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-62007-assign-field.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-62107-match-arm-scopes.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-62107-match-arm-scopes.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-64453.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-64453.stderr Don't allow new const panic through format flattening. 2023-03-16 11:21:50 +01:00
issue-69789-iterator-mut-suggestion.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-69789-iterator-mut-suggestion.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-70919-drop-in-loop.rs Add regression tests for issue 70919 2023-03-05 16:56:57 +01:00
issue-71546.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-80772.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-1.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-2.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-3.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-3.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-4.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-4.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-5.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-5.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-6.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-6.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-7.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-7.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-8.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-8.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-9.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-9.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-10.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-10.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81365-11.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81365-11.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-81899.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-81899.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82032.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82032.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82126-mismatched-subst-and-hir.rs diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
issue-82126-mismatched-subst-and-hir.stderr diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
issue-82462.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-82462.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83309-ice-immut-in-for-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83309-ice-immut-in-for-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83760.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83760.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-83924.fixed Move tests 2023-02-16 11:42:35 -03:00
issue-83924.rs Move tests 2023-02-16 11:42:35 -03:00
issue-83924.stderr Move tests 2023-02-16 11:42:35 -03:00
issue-85581.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85581.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-85765.rs Provide structured suggestion for binding needing type on E0594 2023-02-03 18:53:27 +00:00
issue-85765.stderr Provide structured suggestion for binding needing type on E0594 2023-02-03 18:53:27 +00:00
issue-87456-point-to-closure.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-87456-point-to-closure.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-88434-minimal-example.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-88434-minimal-example.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-88434-removal-index-should-be-less.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-88434-removal-index-should-be-less.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-91206.rs Provide structured suggestion for binding needing type on E0594 2023-02-03 18:53:27 +00:00
issue-91206.stderr Provide structured suggestion for binding needing type on E0594 2023-02-03 18:53:27 +00:00
issue-92015.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-92015.stderr Provide structured suggestion for binding needing type on E0594 2023-02-03 18:53:27 +00:00
issue-92157.rs Add regression test for #92157 2023-01-15 05:47:24 +09:00
issue-92157.stderr Add regression test for #92157 2023-01-15 05:47:24 +09:00
issue-93078.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-93078.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-93093.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-93093.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-95079-missing-move-in-nested-closure.fixed Suggest move in nested closure when appropriate 2023-02-02 16:26:01 +00:00
issue-95079-missing-move-in-nested-closure.rs Suggest move in nested closure when appropriate 2023-02-02 16:26:01 +00:00
issue-95079-missing-move-in-nested-closure.stderr Suggest move in nested closure when appropriate 2023-02-02 16:26:01 +00:00
issue-101119.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-101119.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102209.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102209.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103095.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103250.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103250.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-103624.rs diagnostics: update test cases to refer to assoc fn with self as method 2023-02-22 08:40:47 -07:00
issue-103624.stderr diagnostics: update test cases to refer to assoc fn with self as method 2023-02-22 08:40:47 -07:00
issue-104639-lifetime-order.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-109271-pass-self-into-closure.fixed Add suggestion to use a closure arg instead of a capture on bck error 2023-04-19 19:13:35 +00:00
issue-109271-pass-self-into-closure.rs Add suggestion to use a closure arg instead of a capture on bck error 2023-04-19 19:13:35 +00:00
issue-109271-pass-self-into-closure.stderr Add suggestion to use a closure arg instead of a capture on bck error 2023-04-19 19:13:35 +00:00
kindck-implicit-close-over-mut-var.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
lazy-init.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
let_underscore_temporary.rs Evaluate place expression in PlaceMention. 2023-04-21 21:34:59 +00:00
let_underscore_temporary.stderr Evaluate place expression in PlaceMention. 2023-04-21 21:34:59 +00:00
many-mutable-borrows.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
many-mutable-borrows.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-error-in-promoted-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-error-in-promoted-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-error-in-promoted.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-error-in-promoted.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-error-snippets-ext.rs Add some reasons why tests are ignored. 2023-04-15 16:11:42 -07:00
move-error-snippets.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-error-snippets.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-from-union-field-issue-66500.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-from-union-field-issue-66500.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern-mut-in-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern-mut-in-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-pattern.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-static-initializer-issue-38520.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
move-in-static-initializer-issue-38520.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-in-loop-2.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-in-loop-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-in-loop-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-in-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-in-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-of-mut-ref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-of-mut-ref.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-outside-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mut-borrow-outside-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mutability-errors.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mutability-errors.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
or-patterns.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
or-patterns.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
promote-ref-mut-in-let-issue-46557.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
promote-ref-mut-in-let-issue-46557.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reassignment_immutable_fields_overlapping.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reassignment_immutable_fields_overlapping.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reassignment_immutable_fields_twice.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reassignment_immutable_fields_twice.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reassignment_immutable_fields.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reassignment_immutable_fields.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reborrow-sugg-move-then-borrow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
reborrow-sugg-move-then-borrow.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-bound-missing-bound-in-impl.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-bound-missing-bound-in-impl.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-escape-bound-fn-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-escape-bound-fn-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-escape-bound-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-escape-bound-fn.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-escape-unboxed-closure.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
regions-escape-unboxed-closure.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-local-binding-from-desugaring.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
return-local-binding-from-desugaring.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
slice-index-bounds-check-invalidation.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
slice-index-bounds-check-invalidation.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-as-ref-on-mut-closure.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-as-ref-on-mut-closure.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assign-rvalue.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-assign-rvalue.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-local-var-double-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-local-var-double-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-local-var-for-vector.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-local-var-for-vector.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-local-var-imm-and-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-local-var-imm-and-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-storing-local-var-for-vector.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
suggest-storing-local-var-for-vector.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
tainted-promoteds.rs Leave promoteds untainted by errors when borrowck fails 2023-04-30 23:57:47 +02:00
tainted-promoteds.stderr Leave promoteds untainted by errors when borrowck fails 2023-04-30 23:57:47 +02:00
two-phase-across-loop.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-across-loop.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-activation-sharing-interference.nll_target.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-activation-sharing-interference.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-allow-access-during-reservation.nll_target.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
two-phase-allow-access-during-reservation.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-baseline.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-bin-ops.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-cannot-nest-mut-self-calls.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-cannot-nest-mut-self-calls.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-control-flow-split-before-activation.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-method-receivers.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-multi-mut.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-multi-mut.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-multiple-activations.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-nonrecv-autoref.base.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-nonrecv-autoref.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-reservation-sharing-interference-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-reservation-sharing-interference-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-reservation-sharing-interference.nll_target.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-reservation-sharing-interference.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-sneaky.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-sneaky.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-surprise-no-conflict.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
two-phase-surprise-no-conflict.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
unboxed-closures-move-upvar-from-non-once-ref-closure.fixed Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unboxed-closures-move-upvar-from-non-once-ref-closure.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
unboxed-closures-move-upvar-from-non-once-ref-closure.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00