view test/condexp1.d @ 322:1aaf6ff7f685 trunk

[svn r343] Move object.di used for running dstress into separate directory.
author ChristianK
date Wed, 09 Jul 2008 17:02:55 +0200
parents 28e99b04a132
children
line wrap: on
line source

module condexp1;

void main()
{
    char[] a = "hello";
    char[] b = "world";
    int i = 42;
    {
    char[] c = i > 50 ? b : a;
    assert(c is a);
    }
}