view tests/mini/delegate3.d @ 1137:45d73f0a9b43

Automated merge with http://hg.dsource.org/projects/ldc
author Christian Kamm <kamm incasoftware de>
date Tue, 24 Mar 2009 14:34:16 +0100
parents 331a176c1f4f
children
line wrap: on
line source

module bar;

class S
{
    int i;
    final int foo()
    {
        return i;
    }
}

void main()
{
    auto s = new S;
    s.i = 42;
    auto dg = &s.foo;
    assert(dg() == 42);
}