iteration problem test

This commit is contained in:
David Halter
2013-07-17 15:56:21 +02:00
parent 8db85dbe15
commit 0dbfc409a7

View File

@@ -208,6 +208,13 @@ f()
#? 9 ['str']
{str: str}
# iteration problem (detected with sith)
d = dict({'a':''})
def y(a):
return a
#? str()
y(**d)
# -----------------
# with variable as index
# -----------------