summaryrefslogtreecommitdiff
path: root/tests/functional/r/recursion/recursion_error_crash.py
blob: 5500428b407d8a47a05f31a67b4c381476cfbc72 (plain)
1
2
3
4
5
6
7
8
9
"""Test that a recursion error does not happen

https://github.com/pylint-dev/pylint/issues/2463
"""
import os

ABC = os.path.realpath('abc')
DEF = os.path.realpath(ABC + 'def')
GHI = os.path.join(DEF, 'ghi')