view test/globals2.d @ 261:5723b7385c25 trunk

[svn r279] fixed bug in makewebstatistics, regenerated output
author ChristianK
date Fri, 13 Jun 2008 08:21:11 +0200
parents a6360e68134a
children
line wrap: on
line source

module globals2;

template Bool(bool b)
{
    const bool Bool = b;
}

void main()
{
    assert(Bool!(true));
    assert(!Bool!(false));
}