From 82b2863a204e727a37a2d23efd738387d2fbab70 Mon Sep 17 00:00:00 2001 From: Alan Egerton Date: Sun, 4 Apr 2021 22:42:19 +0100 Subject: Render destructured struct function param names as underscore. Fixes #83852 r? `@GuillaumeGomez` --- src/test/rustdoc/issue-83852.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/test/rustdoc/issue-83852.rs (limited to 'src/test/rustdoc') diff --git a/src/test/rustdoc/issue-83852.rs b/src/test/rustdoc/issue-83852.rs new file mode 100644 index 00000000000..3c0369e3d34 --- /dev/null +++ b/src/test/rustdoc/issue-83852.rs @@ -0,0 +1,10 @@ +#![crate_name = "foo"] + +struct BodyId { + hir_id: usize, +} + +// @has 'foo/fn.body_owner.html' '//*[@class="rust fn"]' 'pub fn body_owner(_: BodyId)' +pub fn body_owner(BodyId { hir_id }: BodyId) { + // ... +} -- cgit 1.4.1-3-g733a5 From 14fac683289dcd53625544edd3372e5fc737c7ed Mon Sep 17 00:00:00 2001 From: Alan Egerton Date: Mon, 5 Apr 2021 00:29:43 +0100 Subject: Renamed test --- src/test/rustdoc/issue-83852.rs | 10 ---------- src/test/rustdoc/struct-arg-pattern.rs | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 src/test/rustdoc/issue-83852.rs create mode 100644 src/test/rustdoc/struct-arg-pattern.rs (limited to 'src/test/rustdoc') diff --git a/src/test/rustdoc/issue-83852.rs b/src/test/rustdoc/issue-83852.rs deleted file mode 100644 index 3c0369e3d34..00000000000 --- a/src/test/rustdoc/issue-83852.rs +++ /dev/null @@ -1,10 +0,0 @@ -#![crate_name = "foo"] - -struct BodyId { - hir_id: usize, -} - -// @has 'foo/fn.body_owner.html' '//*[@class="rust fn"]' 'pub fn body_owner(_: BodyId)' -pub fn body_owner(BodyId { hir_id }: BodyId) { - // ... -} diff --git a/src/test/rustdoc/struct-arg-pattern.rs b/src/test/rustdoc/struct-arg-pattern.rs new file mode 100644 index 00000000000..3c0369e3d34 --- /dev/null +++ b/src/test/rustdoc/struct-arg-pattern.rs @@ -0,0 +1,10 @@ +#![crate_name = "foo"] + +struct BodyId { + hir_id: usize, +} + +// @has 'foo/fn.body_owner.html' '//*[@class="rust fn"]' 'pub fn body_owner(_: BodyId)' +pub fn body_owner(BodyId { hir_id }: BodyId) { + // ... +} -- cgit 1.4.1-3-g733a5