view test/moduleinfo2.d @ 183:3cdf4b0c75a1 trunk

[svn r199] Fixed: still some small issues with string literals implicitly converting to different pointer types. Should be fixed now!
author lindquist
date Wed, 07 May 2008 20:22:42 +0200
parents 56a21f3e5d3e
children d9d5d59873d8
line wrap: on
line source

module moduleinfo2;
import std.stdio;
void main()
{
    ModuleInfo[] mi = ModuleInfo.modules();
    writefln("listing ",mi.length," modules");
    foreach(m; mi)
    {
        writefln("  ",m.name);
    }
    assert(mi.length > 50);
}