[Issue 1408] Assertion failure: 'd' on line 4234 in file 'mtype.c' on	faulty d code
    d-bugmail at puremagic.com 
    d-bugmail at puremagic.com
       
    Fri Oct 19 00:20:37 PDT 2007
    
    
  
http://d.puremagic.com/issues/show_bug.cgi?id=1408
------- Comment #1 from ddparnell at bigpond.com  2007-10-19 02:20 -------
The following code also crashes with the same "Assertion failure" message.
----
struct X
{
  import std.stdio;
}
void main()
{
   X.std.stdio.writefln("");
}
----
However the following code compiles and runs ...
----
struct X
{
  import std.stdio;
}
void main()
{
   X.writefln("");
}
----
-- 
    
    
More information about the Digitalmars-d-bugs
mailing list