mud/fluffos-2.23-ds03/testsuite/single/tests/efuns/destruct.c
2020-09-06 05:43:07 -07:00

7 lines
102 B
C

void do_tests() {
object ob = new(__FILE__);
ASSERT(ob);
destruct(ob);
ASSERT(!ob);
}