mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
32 lines
438 B
Rust
32 lines
438 B
Rust
//@ run-rustfix
|
|
|
|
trait Foo {}
|
|
|
|
trait Bar {
|
|
fn hello(&self) {}
|
|
}
|
|
|
|
struct S;
|
|
|
|
impl Foo for S {}
|
|
impl Bar for S {}
|
|
|
|
fn test(foo: impl Foo + Bar) {
|
|
foo.hello(); //~ ERROR no method named `hello` found
|
|
}
|
|
|
|
trait Trait {
|
|
fn method(&self) {}
|
|
}
|
|
|
|
impl Trait for fn() {}
|
|
|
|
#[allow(dead_code)]
|
|
fn test2(f: impl Fn() -> (dyn std::fmt::Debug) + Trait) {
|
|
f.method(); //~ ERROR no method named `method` found
|
|
}
|
|
|
|
fn main() {
|
|
test(S);
|
|
}
|