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