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

9 lines
155 B
C

void do_tests() {
mapping m = allocate_mapping(random(1000));
mixed x, y;
foreach (x, y in m) {
ASSERT(0); // shouldn't get here
}
}