Mercurial > projects > ldc
annotate test/static_ctor.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 | c53b6e3fe49a |
children |
rev | line source |
---|---|
lindquist@270 | 1 extern(C) int printf(char*, ...); |
lindquist@270 | 2 |
lindquist@1 | 3 static this() |
lindquist@1 | 4 { |
lindquist@1 | 5 printf("static this\n"); |
lindquist@1 | 6 } |
lindquist@1 | 7 |
lindquist@1 | 8 static ~this() |
lindquist@1 | 9 { |
lindquist@1 | 10 printf("static ~this\n"); |
lindquist@1 | 11 } |
lindquist@1 | 12 |
lindquist@1 | 13 void main() |
lindquist@1 | 14 { |
lindquist@1 | 15 printf("main\n"); |
lindquist@1 | 16 } |