view tests/mini/goto1.d @ 736:e4e50f4b58cd

Fix debug path.
author Christian Kamm <kamm incasoftware de>
date Mon, 27 Oct 2008 17:42:38 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module goto1;

void main()
{
    int i;
    goto lbl;
    i++;
lbl:
    assert(i == 0);
}