view tests/mini/const2.d @ 1198:f48500f9350c

Ported script to Tango
author larsivi@larsivi-gutsy
date Tue, 07 Apr 2009 18:37:19 +0200
parents 446263a8a30d
children
line wrap: on
line source

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

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