mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 15:02:19 +00:00
11 lines
128 B
Rust
11 lines
128 B
Rust
//@ run-rustfix
|
|
|
|
trait Foo {}
|
|
|
|
impl Foo for fn() {}
|
|
|
|
fn main() {
|
|
let _x: &dyn Foo = &main;
|
|
//~^ ERROR the trait bound
|
|
}
|