mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 12:18:33 +00:00
11 lines
138 B
Rust
11 lines
138 B
Rust
![]() |
//@ run-rustfix
|
||
|
|
||
|
trait Foo {}
|
||
|
|
||
|
impl Foo for fn() {}
|
||
|
|
||
|
fn main() {
|
||
|
let _x: &dyn Foo = &(main as fn());
|
||
|
//~^ ERROR the trait bound
|
||
|
}
|