diff options
| author | Chris Denton <chris@chrisdenton.dev> | 2025-04-21 18:53:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-21 18:53:18 +0000 |
| commit | 96ac7d8b5e141ac7ccac7e7c2160dcacf7e24fc0 (patch) | |
| tree | 651ee9917a640f321213d7762cd9ee8007f04fbb /tests | |
| parent | b3a0104ddbb617a101f6f047f4166a442378c585 (diff) | |
| parent | 88a5e1ef683673c7e1b16b399d745d01ad540a19 (diff) | |
| download | rust-96ac7d8b5e141ac7ccac7e7c2160dcacf7e24fc0.tar.gz rust-96ac7d8b5e141ac7ccac7e7c2160dcacf7e24fc0.zip | |
Rollup merge of #140052 - GuillaumeGomez:fix-140026, r=nnethercote
Fix error when an intra doc link is trying to resolve an empty associated item Fixes https://github.com/rust-lang/rust/issues/140026. Assigning ```@nnethercote``` since they're the one who wrote the initial change. I updated rustdoc code instead of compiler's because I think it makes more sense that the caller ensures on their side that the name they're looking for isn't empty. r? ```@nnethercote```
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/rustdoc-ui/intra-doc/empty-associated-items.rs | 8 | ||||
| -rw-r--r-- | tests/rustdoc-ui/intra-doc/empty-associated-items.stderr | 14 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/rustdoc-ui/intra-doc/empty-associated-items.rs b/tests/rustdoc-ui/intra-doc/empty-associated-items.rs new file mode 100644 index 00000000000..ea94cb349ad --- /dev/null +++ b/tests/rustdoc-ui/intra-doc/empty-associated-items.rs @@ -0,0 +1,8 @@ +// This test ensures that an empty associated item will not crash rustdoc. +// This is a regression test for <https://github.com/rust-lang/rust/issues/140026>. + +#[deny(rustdoc::broken_intra_doc_links)] + +/// [`String::`] +//~^ ERROR +pub struct Foo; diff --git a/tests/rustdoc-ui/intra-doc/empty-associated-items.stderr b/tests/rustdoc-ui/intra-doc/empty-associated-items.stderr new file mode 100644 index 00000000000..b0527916ab5 --- /dev/null +++ b/tests/rustdoc-ui/intra-doc/empty-associated-items.stderr @@ -0,0 +1,14 @@ +error: unresolved link to `String::` + --> $DIR/empty-associated-items.rs:6:7 + | +LL | /// [`String::`] + | ^^^^^^^^ the struct `String` has no field or associated item named `` + | +note: the lint level is defined here + --> $DIR/empty-associated-items.rs:4:8 + | +LL | #[deny(rustdoc::broken_intra_doc_links)] + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +error: aborting due to 1 previous error + |
