view test/arrays2.d @ 216:3d022aa016ae trunk

[svn r232] Added dstress test results for rev [231] .
author lindquist
date Tue, 03 Jun 2008 22:32:59 +0200
parents c53b6e3fe49a
children
line wrap: on
line source

char[] get()
{
    return "hello";
}

void param(char[] s)
{
}

void refparam(ref char[] s)
{
}

void main()
{
    char[] dstr = get();
    param(dstr);
    refparam(dstr);
}