stack overflow
RU: переполнение стека
A runtime error that occurs when a program exhausts the fixed-size call stack, most often because of unbounded recursion — a function calling itself without reaching a base case. Each invocation pushes a new stack frame; when the stack region of memory is full, the process or thread is terminated with a stack overflow fault.