mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-27 07:42:23 +00:00
10 lines
143 B
Rust
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 {}
|
|
}
|
|
}
|