Details
-
Sub-task
-
Resolution: Done
-
P2: Important
-
None
-
XPSP3
-
6b67f24865dba2f6712967d5af70024339228e64
Description
#include <iostream>
#include <memory>
struct Test
{
void test() {}
int i;
};
int main()
{
std::auto_ptr<Test> p(new Test);
p-> // HERE, show nothing
p. // HERE, show nothing too
return 0;
}