view tangotests/k.d @ 245:d61ce72c39ab trunk

[svn r262] Fixed debug info for normal function parameters. Fixed debug info for pointers to basic types.
author lindquist
date Mon, 09 Jun 2008 12:43:16 +0200
parents 44a95ac7368a
children
line wrap: on
line source

interface Inter
{
    int func();
}

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

class InterClass : Inter
{
    int func()
    {
        return printf("InterClass.func()\n");
    }
}

alias int delegate() dg_t;

void main()
{
    scope c = new InterClass;

    {
    Inter i = cast(Inter)c;
        {
        dg_t dg = &i.func;
            {
            int j = dg();
            }
        }
    }
}