Mercurial > projects > ldc
annotate test/unrolled.d @ 270:d9d5d59873d8 trunk
[svn r291] Fixed a bunch of the old Phobos tests to work with Tango.
Branch statements now emit a new block after it.
Fixed the _adSort runtime function had a bad signature.
Added a missing dot prefix on compiler generated string tables for string switch.
Fixed, PTRSIZE seems like it was wrong on 64bit, now it definitely gets set properly.
author | lindquist |
---|---|
date | Mon, 16 Jun 2008 16:01:19 +0200 |
parents | 37a4fdab33fc |
children |
rev | line source |
---|---|
lindquist@15 | 1 module unrolled; |
lindquist@15 | 2 |
lindquist@270 | 3 extern(C) int printf(char*, ...); |
lindquist@270 | 4 |
lindquist@15 | 5 void test(T...)(T t) { |
lindquist@15 | 6 foreach (value; t) { |
lindquist@15 | 7 printf("%d\n", value); |
lindquist@15 | 8 if (value == 2) |
lindquist@15 | 9 break; |
lindquist@15 | 10 } |
lindquist@15 | 11 } |
lindquist@15 | 12 |
lindquist@15 | 13 void main() { |
lindquist@15 | 14 test(1,4,3); |
lindquist@15 | 15 } |