rust/tests/ui/traits/fn-pointer/suggest-wrap-parens.fixed
2024-09-26 18:17:52 -07:00

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
}