Skip to content

Commit 2781c6c

Browse files
committed
Enable a string test for overload
1 parent 223a64d commit 2781c6c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

integration_tests/test_generics_01.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ def test(a: bool) -> i32:
2626
def check():
2727
assert foo(2) == 4
2828
assert foo(2, 10) == 20
29-
# Following assert has LLVM string len issue: gh-175
30-
# assert foo("hello") == "lpython-hello"
29+
assert foo("hello") == "lpython-hello"
3130
assert test(10) == 20
3231
assert test(False) == -test(True) and test(True) == 10
3332

0 commit comments

Comments
 (0)