mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
266 B
Rust
16 lines
266 B
Rust
struct Foo;
|
|
|
|
trait Bar {}
|
|
|
|
impl Bar for Foo {}
|
|
|
|
fn needs_bar<T: Bar>(_: T) {}
|
|
|
|
fn blah(f: fn() -> Foo) {
|
|
needs_bar(f);
|
|
//~^ ERROR the trait bound `fn() -> Foo: Bar` is not satisfied
|
|
//~| HELP use parentheses to call this function pointer
|
|
}
|
|
|
|
fn main() {}
|