view tests/mini/debug12.d @ 380:2bf65352fb28

Mixed up argument types for aApply and aaApply.
author Christian Kamm <kamm incasoftware de>
date Wed, 23 Jul 2008 17:55:20 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module tangotests.debug12;

interface I
{
    int foo();
}

class C : I
{
    int i = 24;
    int foo()
    {
        return i;
    }
}

void main()
{
    scope c = new C;
    I i = c;

    int* fail;
    *fail = 0;
}