annotate tests/mini/union6.d @ 863:6c850977a941

modified gen/linker.cpp to only append .exe suffix on windows if not already present
author elrood
date Thu, 18 Dec 2008 19:24:33 +0100
parents 44f08170f4ef
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 }