We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fb4a215 + fcdfb60 commit 1ed8cb8Copy full SHA for 1ed8cb8
integration_tests/CMakeLists.txt
@@ -133,6 +133,7 @@ RUN(NAME expr_04 LABELS cpython llvm c)
133
RUN(NAME expr_05 LABELS cpython llvm)
134
RUN(NAME expr_06 LABELS cpython llvm)
135
RUN(NAME expr_08 LABELS llvm c)
136
+RUN(NAME expr_10 LABELS cpython)
137
RUN(NAME test_types_01 LABELS cpython llvm)
138
RUN(NAME test_str_01 LABELS cpython llvm)
139
RUN(NAME test_str_02 LABELS cpython llvm)
integration_tests/expr_10.py
@@ -0,0 +1,10 @@
1
+from ltypes import i32
2
+
3
+def g() -> i32:
4
+ return 5
5
6
+def test_fn1():
7
+ i: i32 = g()
8
+ g()
9
10
+test_fn1()
0 commit comments