When I try to compile this:
Code:
class my_class;
class my_class
{
   my_class ply;
   char board[10];
};
Dev-C++ returns the error:
Quote Originally Posted by Dev-C++
field `ply' has incomplete type
Why? And how can I fix it?