mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
219 B
Rust
10 lines
219 B
Rust
#![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) {
|
|
// ...
|
|
}
|