mirror of
https://github.com/ruuda/rcl.git
synced 2025-12-23 04:47:19 +00:00
12 lines
442 B
Text
12 lines
442 B
Text
// This expression is nested too deep, and triggers a defense against stack
|
|
// overflow in the parser. Every line contains 50 parens.
|
|
((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
0
|
|
))))))))))))))))))))))))))))))))))))))))))))))))))
|
|
|
|
# output:
|
|
stdin:3:50
|
|
╷
|
|
3 │ ((((((((((((((((((((((((((((((((((((((((((((((((((
|
|
╵ ^
|
|
Error: Parser recursion limit reached, please reduce nesting.
|