view tests/mini/goto1.d @ 618:c9aa338280ed

Removed some excessive llvm type logging
author tomas@myhost
date Sun, 28 Sep 2008 15:22:39 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module goto1;

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