view test/globals2.d @ 202:56e0c5b1d428 trunk

[svn r218] Added test results for [217]
author lindquist
date Mon, 12 May 2008 23:49:07 +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));
}