rust/tests/rustdoc/fn-pointer-arg-name.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
184 B
Rust
Raw Normal View History

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