]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/auxiliary/issue-21801.rs
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / rustdoc / auxiliary / issue-21801.rs
1 // compile-flags: -Cmetadata=aux
2
3 pub struct Foo;
4
5 impl Foo {
6     pub fn new<F>(f: F) -> Foo where F: FnMut() -> i32 {
7         loop {}
8     }
9 }