summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/dont-project-to-rpitit-with-no-value.rs
blob: fe0f011b6b066519ffd3a348c7438cfd039d24fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
trait MyTrait {
    fn foo(&self) -> impl Sized;
    fn bar(&self) -> impl Sized;
}

impl MyTrait for i32 {
    //~^ ERROR not all trait items implemented, missing: `foo`
    fn bar(&self) -> impl Sized {
        self.foo()
    }
}

fn main() {}