view tests/mini/dgfuncptr.d @ 787:5d2ac0c2dd46

Fix StdCall selection.
author Christian Kamm <kamm incasoftware de>
date Tue, 25 Nov 2008 17:15:02 +0100
parents 4435f57956e7
children
line wrap: on
line source

void main()
{
  void foo() {}

  auto dg = &foo;

  if(dg.funcptr is null)
  { assert(0); }
}