view test/scope3.d @ 45:ff359b65fa62 trunk

[svn r49] foreach on dynamic arrays
author lindquist
date Fri, 19 Oct 2007 16:37:15 +0200
parents 8b0e809563df
children d9d5d59873d8
line wrap: on
line source

module scope3;

void main()
{
    int i;
    while (i < 10) {
        scope(success) i++;
    }
    printf("%d\n", i);
}