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.
1 parent aba32e0 commit e04d01bCopy full SHA for e04d01b
integration_tests/CMakeLists.txt
@@ -454,8 +454,8 @@ RUN(NAME print_list_tuple_02 LABELS cpython llvm c NOFAST)
454
RUN(NAME print_list_tuple_03 LABELS cpython llvm c NOFAST)
455
456
# CPython and LLVM
457
-RUN(NAME const_01 LABELS cpython llvm c)
458
-RUN(NAME const_02 LABELS cpython llvm c)
+RUN(NAME const_01 LABELS cpython llvm c wasm)
+RUN(NAME const_02 LABELS cpython llvm c wasm)
459
RUN(NAME const_03 LABELS cpython llvm c
460
EXTRAFILES const_03b.c)
461
RUN(NAME const_04 LABELS cpython llvm c)
integration_tests/const_01.py
@@ -13,6 +13,11 @@ def test_const_variables():
13
ycf: Const[f64] = 3.0
14
yf: f64 = 3.0
15
16
+ print(xci, xi)
17
+ print(yci, yi)
18
+ print(xcf, xf)
19
+ print(ycf, yf)
20
+
21
assert xci == xi
22
assert yci == yi
23
assert xcf == xf
0 commit comments