view test/strings1.d @ 54:28e99b04a132 trunk

[svn r58] Fixed cond expression resulting in a non-basic type. Fixed identity expression for dynamic arrays. Revamped the system to keep track of lvalues and rvalues and their relations. Typedef declaration now generate the custom typeinfo. Other bugfixes.
author lindquist
date Wed, 24 Oct 2007 01:37:34 +0200
parents 8d45266bbabe
children d9d5d59873d8
line wrap: on
line source

module strings1;

void f(char[11] buffer)
{
    printf("%.*s\n", buffer.length, buffer.ptr);
}

void main()
{
    char[11] buffer;
    char[] hello = "hello world";
    {buffer[] = hello[];}
    {f(buffer);}
    {f("eleven char");}
}