about summary refs log tree commit diff
path: root/tests/rustdoc/struct-arg-pattern.rs
blob: af94089bf1aa12ff87cd6d298810ae849399b7b3 (plain)
1
2
3
4
5
6
7
8
9
10
#![crate_name = "foo"]

struct BodyId {
    hir_id: usize,
}

//@ has 'foo/fn.body_owner.html' '//pre[@class="rust item-decl"]' 'pub fn body_owner(_: BodyId)'
pub fn body_owner(BodyId { hir_id }: BodyId) {
    // ...
}