about summary refs log tree commit diff
path: root/tests/rustdoc/fn-pointer-arg-name.rs
blob: 3bde6e9ecfa8c788d13328fb5deb898aa4b01ba8 (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)) {}