08/06/12 22:14:37 BE:280248454-2BP(380)
class test {
public:
test(void){};
~test(void) {};
};
#include <stdio.h>
#include "test.h"
int main() {
test x = new test();
printf("Hello World! \n");
}
1>c:\documents and settings\default\my documents\visual studio 2005\projects\test\test\main.cpp(7) :
error C2679: binary '=' : no operator found which takes a right-hand operand of type 'test *' (or there is no acceptable conversion)
なにこれ?