view tests/mini/const2.d @ 819:446263a8a30d

Fixed taking address of global static array element as constant expression.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 02 Dec 2008 01:07:22 +0100
parents
children
line wrap: on
line source

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

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