annotate src/tests/forward05.d @ 839:4063da6f3edd default tip

Refactored the config file and how it is loaded.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Thu, 21 Aug 2008 17:51:04 +0200
parents bcb74c9b895c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
652
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
1 /++
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
2 Author: Aziz Köksal
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
3 +/
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
4
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
5 struct A
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
6 { int a = B.x; }
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
7
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
8 struct B
b4c9f1cb19c6 Added test forward05.d.
Aziz K?ksal <aziz.koeksal@gmail.com>
parents:
diff changeset
9 { const int x = 1; }