os-rust/tests/rustdoc/inline_cross/sugar-closure-crate-21801.rs
2023-10-04 12:58:06 -07:00

11 lines
266 B
Rust

// aux-build:issue-21801.rs
// ignore-cross-compile
#![crate_name="issue_21801"]
extern crate issue_21801;
// @has issue_21801/struct.Foo.html
// @has - '//*[@id="method.new"]' \
// 'fn new<F>(f: F) -> Foowhere F: FnMut() -> i32'
pub use issue_21801::Foo;