view tests/mini/aa5.d @ 618:c9aa338280ed

Removed some excessive llvm type logging
author tomas@myhost
date Sun, 28 Sep 2008 15:22:39 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module aa5;

void main()
{
    int[int] aa;
    aa[42] = 1;
    int i = aa[42];
    assert(i == 1);
}