view test/cond1.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 8b0e809563df
children
line wrap: on
line source

module cond1;

void main()
{
    double a = 2;
    double b = 4;
    double c = (a > 0) ? a : b;
}