view test/classes6.d @ 120:5ce8ab11e75a trunk

[svn r124] Fixed another D vararg + return in ptr bug. Fixed some nested function calls failed to resolve the context ptr.
author lindquist
date Mon, 26 Nov 2007 07:26:21 +0100
parents d3ee9efe20e2
children d9d5d59873d8
line wrap: on
line source

module classes6;

class C
{
    void f()
    {
        printf("world\n");
    }
}

class D : C
{
    void f()
    {
        printf("moon\n");
    }
}


extern(C)
{
    void srand(uint seed);
    int rand();
}

import llvm.intrinsic;

void main()
{
    C c;
    srand(readcyclecounter());
    if (rand() % 2)
        c = new C;
    else
        c = new D;
    c.f();
}