mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-13 07:24:00 +00:00
13 lines
145 B
Rust
13 lines
145 B
Rust
// check-pass
|
|
|
|
#![feature(trait_alias)]
|
|
|
|
struct MyStruct {}
|
|
trait MyFn = Fn(&MyStruct);
|
|
|
|
fn foo(_: impl MyFn) {}
|
|
|
|
fn main() {
|
|
foo(|_| {});
|
|
}
|