annotate test/scope1.d @ 8:5e69b77a5c51 trunk

[svn r12] fixed accessing aggregate fields of aggregates removed some useless branches for successive scopes ala {}{}{}
author lindquist
date Thu, 27 Sep 2007 06:03:06 +0200
parents
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 }