Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Foo;
impl Foo {
fn bar(self) -> Foo {
Foo
}
fn baz<const N: usize>(self) -> Foo {
println!("baz: {}", N);
fn main() {
Foo.bar().bar().bar().bar().baz(); //~ ERROR type annotations needed