view test/bug19.d @ 59:362825278842 trunk

[svn r63] Forgot lphobos/typeinfo2
author lindquist
date Thu, 25 Oct 2007 09:04:00 +0200
parents e5c4bece7fa1
children
line wrap: on
line source

module bug19;

void main()
{
    auto dg = (int i) { return i*2; };
    assert(dg(2) == 4);
}