Skip to content

Commit e2db6ac

Browse files
Update irbuild-str.test
1 parent ab423de commit e2db6ac

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

mypyc/test-data/irbuild-str.test

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -752,8 +752,12 @@ def fold_list() -> str:
752752
return " ".join([constant, "folded"])
753753
[out]
754754
def fold_tuple():
755+
r0 :: str
755756
L0:
756-
return "constant folded"
757+
r0 = "constant folded"
758+
return r0
757759
def fold_list():
760+
r0 :: str
758761
L0:
759-
return "constant folded"
762+
r0 = "constant folded"
763+
return r0

0 commit comments

Comments
 (0)