Mercurial > projects > ldc
annotate tests/mini/bug29.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 | 1bb99290e03a |
children |
rev | line source |
---|---|
lindquist@52 | 1 module bug29; |
lindquist@270 | 2 extern(C) int printf(char*, ...); |
lindquist@52 | 3 |
lindquist@52 | 4 void main() |
lindquist@52 | 5 { |
lindquist@52 | 6 int[] arr16 = new int[4]; |
lindquist@52 | 7 { |
lindquist@52 | 8 void[] arr = arr16; |
lindquist@52 | 9 { |
lindquist@52 | 10 printf("%lu\n", arr.length); |
lindquist@52 | 11 { |
lindquist@52 | 12 assert(arr.length == 16); |
lindquist@52 | 13 } |
lindquist@52 | 14 } |
lindquist@52 | 15 } |
lindquist@52 | 16 } |