2 * Placed into the Public Domain
3 * written by Walter Bright
8 extern (C) void _d_invariant(Object o)
11 //printf("__d_invariant(%p)\n", o);
13 // BUG: needs to be filename/line of caller, not library routine
14 assert(o !is null); // just do null check, not invariant check
21 (*c.classInvariant)(o);