lama_byterun/runtime/negative_scenarios/extra_roots_overflow_neg.c
2023-10-04 05:23:14 +02:00

7 lines
No EOL
141 B
C

#include "../gc.h"
#include <stddef.h>
int main () {
for (size_t i = 0; i < MAX_EXTRA_ROOTS_NUMBER + 1; ++i) { push_extra_root(NULL); }
}