Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Wrapper<T>(T);
trait Foo {
fn bar() -> Wrapper<impl Sized>;
}
impl Foo for () {
fn bar() -> i32 {
//~^ ERROR method `bar` has an incompatible return type for trait
0
fn main() {}