mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
9 lines
160 B
Rust
9 lines
160 B
Rust
#![feature(trait_alias)]
|
|
|
|
trait Confusing<F> = Fn(i32) where F: Fn(u32);
|
|
|
|
fn alias<T: Confusing<F>, F>(_: T, _: F) {}
|
|
|
|
fn main() {
|
|
alias(|_| {}, |_| {});
|
|
}
|