rustc/tests/ui/traits/fn-pointer/suggest-wrap-parens.rs
2024-11-29 22:33:13 +01:00

11 lines
128 B
Rust

//@ run-rustfix
trait Foo {}
impl Foo for fn() {}
fn main() {
let _x: &dyn Foo = &main;
//~^ ERROR the trait bound
}