May 06, 2005
Walter wrote:
> More bug fixes.
> 
> http://www.digitalmars.com/d/changelog.html
> 
> 
> 

Cool but it is crashing all the time on some errors... I can't find the pattern yet...
May 06, 2005
bobef wrote:

> 
> Cool but it is crashing all the time on some errors... I can't find the pattern yet...

Looks to me that wrong function arguments are causing it...
May 08, 2005
bobef wrote:
> bobef wrote:
> 
>>
>> Cool but it is crashing all the time on some errors... I can't find the pattern yet...
> 
> 
> Looks to me that wrong function arguments are causing it...

I can confirm this. It's the only crash I've encountered. It happens with constructors too, for example...

class MyClass
{
	this(int arg)
	{
	}
}

MyClass c = new MyClass(); // Crash, arg missing.
MyClass d = new MyClass(new OtherClass()); // Crash, type differs.

Peter
1 2
Next ›   Last »