1 2 3 4 5 6 7
# call-external # BUG: Reference counting bug with string augmented assignment and external calls # String += with external call causes reference counting error s = 'hello' s += concat_strings(' ', 'world') assert s == 'hello world'