rust/tests/rustdoc/inline_cross/auxiliary/issue-21801.rs
2023-10-04 12:58:06 -07:00

10 lines
143 B
Rust

// compile-flags: -Cmetadata=aux
pub struct Foo;
impl Foo {
pub fn new<F>(f: F) -> Foo where F: FnMut() -> i32 {
loop {}
}
}