Sign in
rust
/
rust
/
be90b53d2b756c83f14ea80c4e607fc81dfa3d1d
/
.
/
tests
/
rustdoc
/
struct-arg-pattern.rs
blob: 3bfb43a0bef2c7fed5758002ec0bf30484a185ce [
file
] [
log
] [
blame
]
#![
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
)
{
// ...
}