[svn r93] a few fixes, some phobos additions.

some very rough groundwork for moduleinfo and classinfo support
This commit is contained in:
Tomas Lindquist Olsen
2007-11-07 02:45:47 +01:00
parent 34d9e12020
commit e7a17c2744
9 changed files with 569 additions and 7 deletions

5
test/bug52.d Normal file
View File

@@ -0,0 +1,5 @@
module bug52;
struct Vec { double x,y,z; }
struct Pair(T, U) { T first; U second; }
typedef Pair!(double, Vec) Hit;
void main() {}

11
test/moduleinfo1.d Normal file
View File

@@ -0,0 +1,11 @@
module moduleinfo1;
class C
{
}
void main()
{
C c;
}