Skip to content

Commit 87ef5a8

Browse files
committed
update docs
1 parent 2280246 commit 87ef5a8

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

compiler/rustc_codegen_gcc/tests/failing-ice-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ tests/ui/functions-closures/parallel-codegen-closures.rs
3333
tests/ui/sepcomp/sepcomp-unwind.rs
3434
tests/ui/extern/issue-64655-extern-rust-must-allow-unwind.rs
3535
tests/ui/extern/issue-64655-allow-unwind-when-calling-panic-directly.rs
36-
tests/ui/unwind-no-uwtable.rs
36+
tests/ui/panics/unwind-force-no-unwind-tables.rs
3737
tests/ui/delegation/fn-header.rs
3838
tests/ui/simd/intrinsic/generic-arithmetic-pass.rs
3939
tests/ui/simd/masked-load-store.rs

compiler/rustc_codegen_gcc/tests/failing-lto-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ tests/ui/macros/macro-comma-behavior-rpass.rs
2828
tests/ui/macros/rfc-2011-nicer-assert-messages/assert-with-custom-errors-does-not-create-unnecessary-code.rs
2929
tests/ui/macros/rfc-2011-nicer-assert-messages/feature-gate-generic_assert.rs
3030
tests/ui/macros/stringify.rs
31-
tests/ui/reexport-test-harness-main.rs
31+
tests/ui/attributes/reexport-test-harness-entry-point.rs
3232
tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-in-test.rs
3333
tests/ui/binding/fn-arg-incomplete-pattern-drop-order.rs

compiler/rustc_codegen_gcc/tests/failing-ui-tests.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ tests/ui/iterators/iter-sum-overflow-overflow-checks.rs
1010
tests/ui/mir/mir_drop_order.rs
1111
tests/ui/mir/mir_let_chains_drop_order.rs
1212
tests/ui/mir/mir_match_guard_let_chains_drop_order.rs
13-
tests/ui/oom_unwind.rs
13+
tests/ui/panics/oom-panic-unwind.rs
1414
tests/ui/panic-runtime/abort-link-to-unwinding-crates.rs
1515
tests/ui/panic-runtime/abort.rs
1616
tests/ui/panic-runtime/link-to-abort.rs
17-
tests/ui/unwind-no-uwtable.rs
17+
tests/ui/panics/unwind-force-no-unwind-tables.rs
1818
tests/ui/parser/unclosed-delimiter-in-dep.rs
1919
tests/ui/consts/missing_span_in_backtrace.rs
2020
tests/ui/drop/dynamic-drop.rs

compiler/rustc_codegen_gcc/tests/failing-ui-tests12.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tests/ui/simd/issue-89193.rs
3636
tests/ui/issues/issue-68010-large-zst-consts.rs
3737
tests/ui/rust-2018/proc-macro-crate-in-paths.rs
3838
tests/ui/target-feature/missing-plusminus.rs
39-
tests/ui/sse2.rs
39+
tests/ui/target-feature/target-feature-detection.rs
4040
tests/ui/codegen/issue-79865-llvm-miscompile.rs
4141
tests/ui/std-backtrace.rs
4242
tests/ui/mir/alignment/packed.rs

compiler/rustc_hir_typeck/src/method/confirm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl<'a, 'tcx> ConfirmContext<'a, 'tcx> {
116116
// If there is a `Self: Sized` bound and `Self` is a trait object, it is possible that
117117
// something which derefs to `Self` actually implements the trait and the caller
118118
// wanted to make a static dispatch on it but forgot to import the trait.
119-
// See test `tests/ui/issue-35976.rs`.
119+
// See test `tests/ui/issues/issue-35976.rs`.
120120
//
121121
// In that case, we'll error anyway, but we'll also re-run the search with all traits
122122
// in scope, and if we find another method which can be used, we'll output an

compiler/rustc_hir_typeck/src/method/probe.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2051,7 +2051,7 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
20512051
/// probe. This will result in a pending obligation so when more type-info is available we can
20522052
/// make the final decision.
20532053
///
2054-
/// Example (`tests/ui/method-two-trait-defer-resolution-1.rs`):
2054+
/// Example (`tests/ui/methods/method-two-trait-defer-resolution-1.rs`):
20552055
///
20562056
/// ```ignore (illustrative)
20572057
/// trait Foo { ... }

0 commit comments

Comments
 (0)