diff tests/mini/compile_dgfuncptr.d @ 596:1add138c9ba4

Add broken .funcptr test.
author Christian Kamm <kamm incasoftware de>
date Sun, 14 Sep 2008 22:04:13 +0200
parents
children
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)
+  {}
+}