comparison 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
comparison
equal deleted inserted replaced
818:e8f8cafcaa62 819:446263a8a30d
1 int[10] test;
2 int* t = &test[3];
3
4 void main()
5 {
6 assert(t is &test[3]);
7 }