rust/src/test/rustdoc/struct-arg-pattern.rs
2021-04-05 00:29:43 +01:00

10 lines
210 B
Rust

#![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) {
// ...
}