Recursive constructor call does not support

class m
{
 
m()
  {
   this();//error
  }

m(int l)
{

this(0);

}


}

Comments