view test/moduleinfo2.d @ 274:9f228c1e5311 trunk

[svn r295] Added phobos aliases to string, wstring, dstring and Error to the object.di used for testing. Test results for current revision added.
author ChristianK
date Thu, 19 Jun 2008 13:54:31 +0200
parents 25fa34e899e9
children
line wrap: on
line source

module moduleinfo2;

extern(C) int printf(char*, ...);

void main()
{
    printf("listing modules:\n");
    foreach(m; ModuleInfo)
    {
        printf("  %.*s\n", m.name.length, m.name.ptr);
    }
}