comparison test/bug75.d @ 119:79c9ac745fbc trunk

[svn r123] Fixed some typeinfo module name mismatches. Fixed D-style varargs returning through pointer. Fixed converting nested function to delegate. Added std.string and std.format to Phobos.
author lindquist
date Mon, 26 Nov 2007 06:45:13 +0100
parents
children
comparison
equal deleted inserted replaced
118:d580b95cce2b 119:79c9ac745fbc
1 module bug75;
2
3 void func(void delegate() dg)
4 {
5 }
6
7 void main()
8 {
9 void nested() {
10 }
11 //func(&nested);
12 void delegate() dg = &nested;
13 }