rust/tests/ui/impl-trait/explicit-generic-args-with-.../not-enough-args.rs

7 lines
193 B
Rust

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
}