diff options
Diffstat (limited to 'tests/rustdoc/struct-arg-pattern.rs')
-rw-r--r-- | tests/rustdoc/struct-arg-pattern.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/rustdoc/struct-arg-pattern.rs b/tests/rustdoc/struct-arg-pattern.rs new file mode 100644 index 000000000..3bfb43a0b --- /dev/null +++ b/tests/rustdoc/struct-arg-pattern.rs @@ -0,0 +1,10 @@ +#![crate_name = "foo"] + +struct BodyId { + hir_id: usize, +} + +// @has 'foo/fn.body_owner.html' '//div[@class="item-decl"]/pre[@class="rust"]' 'pub fn body_owner(_: BodyId)' +pub fn body_owner(BodyId { hir_id }: BodyId) { + // ... +} |