view 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 source

void main()
{
  void foo() {}

  auto dg = &foo;

  if(dg.funcptr is null)
  {}
}