view tests/mini/const2.d @ 886:7ddd03a2ce02

Typo fix in rebuild profile. Thanks BlueZeniX.
author Christian Kamm <kamm incasoftware de>
date Fri, 16 Jan 2009 21:06:33 +0100
parents 446263a8a30d
children
line wrap: on
line source

int[10] test;
int* t = &test[3];

void main()
{
    assert(t is &test[3]);
}