Thread overview
asserting dmd has a problem?
Mar 11, 2016
Russel Winder
Mar 11, 2016
Adam D. Ruppe
Mar 11, 2016
Russel Winder
March 11, 2016
Clearly I am missing something very, very simple, but…

The following code compiles fine using DMD 2.70.2:

	writeln(play_bin);
	assert(play_bin is null);
	assert(play_bin !is null);

with the output:

	null

on executing the code. I have two comments:

	WTF
	¿que?


-- 
Russel. ============================================================================= Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net 41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder



March 11, 2016
On Friday, 11 March 2016 at 18:45:12 UTC, Russel Winder wrote:
> The following code compiles fine using DMD 2.70.2:

Using -release?

Or catching the AssertError?
March 11, 2016
On Fri, 2016-03-11 at 18:47 +0000, Adam D. Ruppe via Digitalmars-d- learn wrote:
> On Friday, 11 March 2016 at 18:45:12 UTC, Russel Winder wrote:
> > 
> > The following code compiles fine using DMD 2.70.2:
> Using -release?

Hummm… surreptitious -release I had missed. That deals with that. Many thanks.

> Or catching the AssertError?
-- 
Russel. ============================================================================= Dr Russel Winder      t: +44 20 7585 2200   voip: sip:russel.winder@ekiga.net 41 Buckmaster Road    m: +44 7770 465 077   xmpp: russel@winder.org.uk London SW11 1EN, UK   w: www.russel.org.uk  skype: russel_winder