view test/bug10.d @ 294:94435b0ab2dd trunk

[svn r315] Build full const initializer for static arrays in DtoConstInitializer if necessary.
author ChristianK
date Sun, 22 Jun 2008 21:36:07 +0200
parents d9d5d59873d8
children
line wrap: on
line source

module bug10;
extern(C) int printf(char*, ...);

class C
{
    char[] msg;

    this()
    {
    }
    this(char[] msg)
    {
        this.msg = msg;
    }
}

void main()
{
    auto c = new C();
    c.msg = "world";
    auto b = new C("hello");
    printf("%.*s\n", b.msg.length, b.msg.ptr);
    printf("%.*s\n", c.msg.length, c.msg.ptr);
}