annotate tangotests/debug6.d @ 285:297690b5d4a5 trunk

[svn r306] Fixed: it's now possible to compile and link llvmdc with MinGW32 and msys on Win32 :D I tried it myself ;) Building the runtime still needs some work, but it's a step in the right direction.
author lindquist
date Sat, 21 Jun 2008 03:14:49 +0200
parents b604c56945b0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
246
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
1 module tangotests.debug6;
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
2
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
3 void main()
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
4 {
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
5 char[] str = "hello world :)";
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
6
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
7 int* fail;
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
8 *fail = 32;
b604c56945b0 [svn r263] Changed *** ATTENTION *** to warnings.
lindquist
parents:
diff changeset
9 }