view test/bug59.d @ 194:8ee2c46ff938 trunk

[svn r210] Fixed: last commit was broken.
author lindquist
date Mon, 12 May 2008 18:48:09 +0200
parents 61615fa85940
children
line wrap: on
line source

module bug59;

void main()
{
    int[2] a = 0;
    //func(a);
    a[0] = 1;
    int i = a[0];
    int* p = &a[0];
}

void func(int[2] a)
{
    int* p = cast(int*)a;
}

void func2(int[4] a)
{
    int* p = 3+cast(int*)a;
}