view tests/mini/unrolled.d @ 901:d51551cb3a85

Fix #174.
author Christian Kamm <kamm incasoftware de>
date Thu, 22 Jan 2009 21:46:40 +0100
parents 1bb99290e03a
children
line wrap: on
line source

module unrolled;

extern(C) int printf(char*, ...);

void test(T...)(T t) {
    foreach (value; t) {
        printf("%d\n", value);
        if (value == 2)
            break;
    }
}

void main() {
    test(1,4,3);
}