changeset 596:1add138c9ba4

Add broken .funcptr test.
author Christian Kamm <kamm incasoftware de>
date Sun, 14 Sep 2008 22:04:13 +0200
parents bbfb66c623e7
children 8cc0c46064b1
files tests/mini/compile_dgfuncptr.d
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/compile_dgfuncptr.d	Sun Sep 14 22:04:13 2008 +0200
@@ -0,0 +1,9 @@
+void main()
+{
+  void foo() {}
+
+  auto dg = &foo;
+
+  if(dg.funcptr is null)
+  {}
+}