aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test6
blob: bc17de2be99de564dd449381f65fabf8ee6d1a24 (plain)
1
2
3
4
5
6
7
8
9
10
# test6
# used to fix memory leak in setting defined strings

test = "hello"
test = "fail"
a = test
test = "acd"

print(a)
print(test)