view tests/mini/arrayinit2.d @ 1137:45d73f0a9b43

Automated merge with http://hg.dsource.org/projects/ldc
author Christian Kamm <kamm incasoftware de>
date Tue, 24 Mar 2009 14:34:16 +0100
parents a65a6996922f
children
line wrap: on
line source

// bug #191

int[3] a = [0: 0, 2: 42, 1: 1];

void main()
{
  assert(a[0] == 0);
  assert(a[1] == 1); // fails!
  assert(a[2] == 42);
}