summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/struct-arg-pattern.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/struct-arg-pattern.rs')
-rw-r--r--src/test/rustdoc/struct-arg-pattern.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/rustdoc/struct-arg-pattern.rs b/src/test/rustdoc/struct-arg-pattern.rs
new file mode 100644
index 000000000..3c0369e3d
--- /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) {
+ // ...
+}