annotate tests/mini/dgfuncptr.d @ 1185:8baf611f0009

Fix nested references to 'ref' foreach variables. These "walk around" the array being iterated over, so they're a bit trickier than other variables to get right.
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 01 Apr 2009 00:01:44 +0200
parents 4435f57956e7
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
596
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
1 void main()
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
2 {
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
3 void foo() {}
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
4
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
5 auto dg = &foo;
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
6
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
7 if(dg.funcptr is null)
599
4435f57956e7 Fixed .funcptr property of delegates, no longer uses the infamous DMD rewrites to pointer arithmetic, instead a GEPExp has been introduced.
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
parents: 596
diff changeset
8 { assert(0); }
596
1add138c9ba4 Add broken .funcptr test.
Christian Kamm <kamm incasoftware de>
parents:
diff changeset
9 }