view tests/mini/norun_debug12.d @ 1308:316e9ecfeb7d

Automated merge with http://hg.dsource.org/projects/ldc
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 06 May 2009 20:29:27 +0200
parents 24ea9bf5f8b7
children 925779c19395
line wrap: on
line source

module mini.norun_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;
}