annotate tests/mini/classes11.d @ 1602:a413ae7329bf

Merge DMD r243: some harmonization with D2 dmd --- dmd/aggregate.h | 24 ++++- dmd/attrib.c | 63 ++++++---- dmd/attrib.h | 10 +- dmd/declaration.h | 5 +- dmd/func.c | 337 ++++++++++++++++++++++------------------------------- dmd/mars.c | 2 +- dmd/mars.h | 7 + dmd/mtype.h | 13 ++- dmd/parse.c | 32 ++++- dmd/parse.h | 14 ++- dmd/scope.h | 2 +- 11 files changed, 263 insertions(+), 246 deletions(-)
author Leandro Lucarella <llucax@gmail.com>
date Wed, 06 Jan 2010 15:18:19 -0300
parents 1bb99290e03a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
128
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
1 module classes11;
270
d9d5d59873d8 [svn r291] Fixed a bunch of the old Phobos tests to work with Tango.
lindquist
parents: 128
diff changeset
2 extern(C) int printf(char*, ...);
128
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
3
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
4 void main()
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
5 {
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
6 static class C
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
7 {
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
8 void func()
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
9 {
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
10 printf("Hello world\n");
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
11 }
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
12 }
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
13
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
14 scope c = new C;
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
15 c.func();
e5fe8521bbfa [svn r132] Added some tests. some will fail at the moment.
lindquist
parents:
diff changeset
16 }