comparison test/bug19.d @ 49:e5c4bece7fa1 trunk

[svn r53] added basic support for delegate literals. if you access outer variables you get a broken module
author lindquist
date Fri, 19 Oct 2007 17:43:46 +0200
parents
children
comparison
equal deleted inserted replaced
48:4d171915a77b 49:e5c4bece7fa1
1 module bug19;
2
3 void main()
4 {
5 auto dg = (int i) { return i*2; };
6 assert(dg(2) == 4);
7 }