summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/impl-trait-with-missing-trait-bounds-in-arg.rs
blob: cd05b77386192270daceb3718bf12e4ec9863124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run-rustfix

trait Foo {}

trait Bar {
    fn hello(&self) {}
}

struct S;

impl Foo for S {}
impl Bar for S {}

fn test(foo: impl Foo) {
    foo.hello(); //~ ERROR E0599
}

fn main() {
    test(S);
}