view test/bug47.d @ 91:3f949c6e2e9d trunk

[svn r95] added support for mains like: T main(string[] args) fixed a bug with slicing a pointer that is an argument with no storage
author lindquist
date Wed, 07 Nov 2007 04:52:56 +0100
parents d8dd47ef3973
children
line wrap: on
line source

module bug47;

bool func(bool a, bool b)
{
    if (a) b = false;
    return b;
}

void main()
{
    assert(func(0,0) == 0);
    assert(func(0,1) == 1);
    assert(func(1,0) == 0);
    assert(func(1,1) == 0);
}