summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/runnable/test23234.d
blob: 7872aa76dfe2571767dbea51022a33e2da609c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// https://issues.dlang.org/show_bug.cgi?id=23234

class Bar
{
}

class Foo
{
    Bar get() { return new Bar; }
    alias get this;
}

void main()
{
    auto foo = new Foo;
    void test(Bar delegate() dg)
    {
        assert(dg() !is null);
    }

    test(() => foo);
}