Files
openide/python/testData/codeInsight/runLineMarker/not_runnable.py
2016-12-30 14:14:55 +03:00

11 lines
98 B
Python

def f():
def g():
pass
if __name__ == '__main__':
g()
print(1)
f()