File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -571,6 +571,7 @@ RUN(NAME test_unary_op_04 LABELS cpython llvm c) # unary bitinvert
571
571
RUN (NAME test_unary_op_05 LABELS cpython llvm c ) # unsigned unary minus, plus
572
572
RUN (NAME test_unary_op_06 LABELS cpython llvm c ) # unsigned unary bitnot
573
573
RUN (NAME test_unsigned_01 LABELS cpython llvm c ) # unsigned bitshift left, right
574
+ RUN (NAME test_unsigned_02 LABELS cpython llvm c )
574
575
RUN (NAME test_bool_binop LABELS cpython llvm c )
575
576
RUN (NAME test_issue_518 LABELS cpython llvm c NOFAST )
576
577
RUN (NAME structs_01 LABELS cpython llvm c )
Original file line number Diff line number Diff line change
1
+ from lpython import u16 , i32
2
+
3
+ # test issue 2170
4
+
5
+ i : i32
6
+ u : u16 = u16 (32768 )
7
+ x : i32
8
+
9
+ for i in range (i32 (u )):
10
+ x = i * 2
You can’t perform that action at this time.
0 commit comments