Skip to content

Commit ed29d01

Browse files
committed
TEST: Remove assign to func param
1 parent 7a052b1 commit ed29d01

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/expr9.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,14 @@ def test_return_2(a: i32) -> str:
1111

1212

1313
def test_return_3(a: i32) -> i32:
14-
a = 3
1514
return a
1615

1716

18-
def test_return_4(a: i32):
19-
a = 1
20-
return
21-
2217
def main0():
2318
i: i32
2419
i = test_return_1(4)
2520
s: str
2621
s = test_return_2(4)
2722
i = test_return_3(4)
28-
test_return_4(4)
2923

3024
main0()

0 commit comments

Comments
 (0)