rust/tests/ui/suggestions/issue-104328.rs

13 lines
228 B
Rust

#![feature(object_safe_for_dispatch)]
trait Foo {
fn f() {}
}
impl Foo for dyn Sized {}
fn main() {
Foo::f();
//~^ ERROR cannot call associated function on trait without specifying the corresponding `impl` type
}