summaryrefslogtreecommitdiff
path: root/python/testData/inspections/PyUnresolvedReferencesInspection/UnusedImportBeforeStarImport/a.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/testData/inspections/PyUnresolvedReferencesInspection/UnusedImportBeforeStarImport/a.py')
-rw-r--r--python/testData/inspections/PyUnresolvedReferencesInspection/UnusedImportBeforeStarImport/a.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/testData/inspections/PyUnresolvedReferencesInspection/UnusedImportBeforeStarImport/a.py b/python/testData/inspections/PyUnresolvedReferencesInspection/UnusedImportBeforeStarImport/a.py
new file mode 100644
index 000000000000..7495833ba2c8
--- /dev/null
+++ b/python/testData/inspections/PyUnresolvedReferencesInspection/UnusedImportBeforeStarImport/a.py
@@ -0,0 +1,5 @@
+import m1
+
+print(m1.foo)
+
+<warning descr="Unused import statement">from m2 import *</warning>