Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn f<T: ?Sized, U: ?Sized>(_: impl AsRef<T>, _: impl AsRef<U>) {}
fn main() {
f::<[u8]>("a", b"a");
//~^ ERROR function takes 2 generic arguments but 1 generic argument was supplied
}