static __gshared NoInv obj;

  void test()
  {
      obj.func();
  }

  obj = new NoInv();
  auto bench = benchmark!(test)(10_000_000);
  writeln("Total time: ", to!Duration(bench[0]));

Reply via email to