annotate tests/mini/dgfuncptr.d @ 650:aa6a0b7968f7

Added test case for bug #100 Removed dubious check for not emitting static private global in other modules without access. This should be handled properly somewhere else, it's causing unresolved global errors for stuff that should work (in MiniD)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 05 Oct 2008 17:28:15 +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 }