mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +00:00
12 lines
170 B
Rust
12 lines
170 B
Rust
//@ known-bug: #122904
|
|
trait T {}
|
|
|
|
type Alias<'a> = impl T;
|
|
|
|
struct S;
|
|
impl<'a> T for &'a S {}
|
|
|
|
fn with_positive(fun: impl Fn(Alias<'_>)) {
|
|
with_positive(|&n| ());
|
|
}
|