comparison tests/mini/alignment.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/alignment.d@c53b6e3fe49a
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module alignment;
2
3 align(1) struct S
4 {
5 ubyte b;
6 int i;
7 ubyte[2] b2;
8 long l;
9 real r;
10 }
11
12 void main()
13 {
14 byte b;
15 short s;
16 int i;
17 long l;
18 float f;
19 double d;
20 real r;
21 }