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) なにこれ?