summaryrefslogtreecommitdiffstats
path: root/src/test/ui/argument-suggestions/issue-96638.rs
blob: 9c6e81ab8cc75eb5b292c15fc7a7f9bff760bc8e (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 this function takes 3 arguments but 2 arguments were supplied
}