view tests/code/scope_2.d @ 89:a49bb982a7b0 new_gen

Using the new SourceLocation system to handle errors. Also, this is the first push for making the errors don't throw, but continue to check the source.
author Anders Johnsen <skabet@gmail.com>
date Sun, 04 May 2008 20:27:01 +0200
parents d84fec04d462
children
line wrap: on
line source

//fail
int main()
{
    int x = 10;
    while (x > 0)
    {
        int y = 1;
        x = x -y;
    }
    return y;
}