Version 1638
VS 2003
Returning a reference from a function with a single argument, and attempting to get the members when inlining code VAX lists the members of both of the return type as well as the argument type.
struct T
{
void bar();
};
class Sr
{
public:
Sr();
void baz();
};
T& _U_test(Sr& gr);
int main()
{
Sr anS;
_U_test(anS).
}
Expected list box contents (on .)
bar()
Actual list box contents
bar() [bold]
baz()
Sr()