summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/fn-pointer-arg-name.rs
blob: 359ca64ee8d6777a96b364dd1987d64a0cf1eae5 (plain)
1
2
3
4
5
#![crate_name = "foo"]

// @has foo/fn.f.html
// @has - '//pre[@class="rust item-decl"]' 'pub fn f(callback: fn(len: usize, foo: u32))'
pub fn f(callback: fn(len: usize, foo: u32)) {}