cyclic constructor call does not support


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

m(int l)
{

this();

}


}

Comments