annotate test/scope1.d @ 33:bc641b23a714 trunk

[svn r37] * Initial support for foreach on static arrays. Not 100% complete
author lindquist
date Thu, 04 Oct 2007 22:38:53 +0200
parents 5e69b77a5c51
children d9d5d59873d8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
1 module scope1;
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
2
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
3 void main()
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
4 {
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
5 printf("1\n");
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
6 {
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
7 scope(exit) printf("2\n");
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
8 }
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
9 printf("3\n");
5e69b77a5c51 [svn r12] fixed accessing aggregate fields of aggregates
lindquist
parents:
diff changeset
10 }