Mercurial > projects > ldc
annotate tests/mini/structs7.d @ 1651:cb960b882ca3 tip
bindings were moved to dsource.org/projects/bindings/
author | Moritz Warning <moritzwarning@web.de> |
---|---|
date | Thu, 20 May 2010 20:05:03 +0200 |
parents | 44f08170f4ef |
children |
rev | line source |
---|---|
lindquist@100 | 1 module structs7; |
lindquist@100 | 2 |
lindquist@100 | 3 struct S |
lindquist@100 | 4 { |
lindquist@100 | 5 int i; |
lindquist@100 | 6 long l; |
lindquist@100 | 7 } |
lindquist@100 | 8 |
lindquist@100 | 9 void main() |
lindquist@100 | 10 { |
lindquist@100 | 11 S s = void; |
lindquist@100 | 12 int i = s.i; |
lindquist@100 | 13 long l = s.l; |
lindquist@100 | 14 } |