File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -606,6 +606,7 @@ RUN(NAME test_import_04 LABELS cpython llvm llvm_jit c)
606606RUN(NAME test_import_05 LABELS cpython llvm llvm_jit c wasm wasm_x86 wasm_x64)
607607RUN(NAME test_import_06 LABELS cpython llvm llvm_jit)
608608RUN(NAME test_import_07 LABELS cpython llvm llvm_jit c)
609+ RUN(NAME test_import_08 LABELS cpython llvm)
609610RUN(NAME test_math LABELS cpython llvm llvm_jit NOFAST)
610611RUN(NAME test_membership_01 LABELS cpython llvm)
611612RUN(NAME test_numpy_01 LABELS cpython llvm llvm_jit c)
Original file line number Diff line number Diff line change 1+ import string
2+
3+ import test_import_08_module
4+
5+ # Supporting unused imports that "have expr own variables"
Original file line number Diff line number Diff line change 1+ from lpython import i32
2+
3+ a : i32 = 10
4+ b : i32 = a + 10
5+
6+ print ("Inside import" )
You can’t perform that action at this time.
0 commit comments