annotate tests/mini/union6.d @ 443:44f08170f4ef

Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn. Reworked the LLVMDC specific pragmas.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 01 Aug 2008 00:32:06 +0200
parents 1bb99290e03a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
78
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
1 module union6;
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
2
443
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
3 struct S
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
4 {
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
5 byte a;
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
6 byte b;
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
7 }
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
8 union U
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
9 {
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
10 byte a;
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
11 byte b;
44f08170f4ef Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 341
diff changeset
12 S c;
78
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
13 }
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
14
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
15 void main()
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
16 {
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
17 U u;
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
18 auto a = u.c.b;
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
19 //auto c = u.s.l;
2332006e1fa4 [svn r82] Fixed: Fall-through switch cases were broken.
lindquist
parents:
diff changeset
20 }