view tangotests/h.d @ 188:7949d3dd0341 trunk

[svn r204] Don't run complex dstress tests, they seem to be broken.
author ChristianK
date Sat, 10 May 2008 06:44:57 +0200
parents 68a7dd38c03c
children
line wrap: on
line source

interface Iin
{
    void[] read(size_t n);
}

interface Iout
{
    size_t write(void[] d);
}

class C : Iin
{
    void[] read(size_t n)
    {
        return null;
    }

    size_t write(void[] d)
    {
        return 0;
    }
}

void main()
{
    scope c = new C;
}