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