Currently using VAX 1649.
Consider this:void foo(string &a, string &b);
void foo(int x, int y, int z);
When I type the following VAX shows "[1 of 2] foo(string &a, string &b)":
int myInt = 0;
foo(myInt,
When I insert a comma, VAX should select the second tooltip since the type of myInt is int:
"[2 of 2] foo(int x, int y, int z)"