lama_byterun/runtime/negative_scenarios/extra_roots_overflow_neg.c

7 lines
141 B
C
Raw Normal View History

2023-10-04 05:23:14 +02:00
#include "../gc.h"
#include <stddef.h>
int main () {
for (size_t i = 0; i < MAX_EXTRA_ROOTS_NUMBER + 1; ++i) { push_extra_root(NULL); }
}