view test/bug26.d @ 313:a498b736a0bd trunk

[svn r334] Produce an error for zero-size types instead of segfaulting.
author ChristianK
date Sun, 29 Jun 2008 22:22:37 +0200
parents 0c77619e803b
children
line wrap: on
line source

module bug26;

extern int i;

void main()
{
    int j = i;
}