blob: 5e720f174c24015ea652077854103afb24c152ad (
plain)
1
2
3
4
5
6
7
8
9
|
fn f(_: usize, _: &usize, _: usize) {}
fn arg<T>() -> T { todo!() }
fn main() {
let x = arg(); // `x` must be inferred
// The reference on `&x` is important to reproduce the ICE
f(&x, ""); //~ ERROR function takes 3 arguments but 2 arguments were supplied
}
|