1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 23:11:50 +03:00
semantic/test/fixtures/python/analysis/main.py

10 lines
73 B
Python
Raw Normal View History

print("main.py")
import a
import b.c
x = a.foo(1)
print(x)
b.c.baz(1)