Child class calls super Constructor

Hi :bu:

I got something just like that:

import Two;

class One
{
  public function One()
  {
    var two:Two = new Two();
  }
}
class Two extends One
{
  public function Two()
  {
    trace("new class Two called");
  }
}

I dont know if that is normal, but this code create an infinite loop, because when i create a new instance of class Two, because of the extends, the class One constructor is called again, and creating a new instance of class Two, and so on…

I know how can i get this fixed, but, what i want to know is, this is correct? Its a Flash bug? Isnt that way in AS3?

Thanks in advance :slight_smile: