summaryrefslogtreecommitdiff
path: root/tests/regrtest_data/fail_under_minus10.py
blob: 5ce3785ba6580af46ba2865cdfe86c5f82a35687 (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
	Pylint score:  -10
"""
import nonexistent


def loop():
	count = 0
	for i in range(5):
		count += 1
	print(count)