mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-06 06:57:42 +00:00
9 lines
187 B
Rust
9 lines
187 B
Rust
![]() |
#![feature(trait_alias)]
|
||
|
|
||
|
pub trait SelfInput = Fn(&mut Self);
|
||
|
|
||
|
pub fn f(_f: &dyn SelfInput) {}
|
||
|
//~^ ERROR the trait alias `SelfInput` cannot be made into an object [E0038]
|
||
|
|
||
|
fn main() {}
|